summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2021-12-13 14:52:59 +0100
committerLioncash <mathew1800@gmail.com>2021-12-13 14:53:01 +0100
commit479369db43092089b7a8ace65d4eadd78cb56b00 (patch)
treee74aa712f1a45612a0c45da351951f204ce2e99f
parentinput_engine: Remove unnecessary return (diff)
downloadyuzu-479369db43092089b7a8ace65d4eadd78cb56b00.tar
yuzu-479369db43092089b7a8ace65d4eadd78cb56b00.tar.gz
yuzu-479369db43092089b7a8ace65d4eadd78cb56b00.tar.bz2
yuzu-479369db43092089b7a8ace65d4eadd78cb56b00.tar.lz
yuzu-479369db43092089b7a8ace65d4eadd78cb56b00.tar.xz
yuzu-479369db43092089b7a8ace65d4eadd78cb56b00.tar.zst
yuzu-479369db43092089b7a8ace65d4eadd78cb56b00.zip
-rw-r--r--src/input_common/input_engine.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/input_common/input_engine.h b/src/input_common/input_engine.h
index fb89f9257..c85c72af8 100644
--- a/src/input_common/input_engine.h
+++ b/src/input_common/input_engine.h
@@ -138,36 +138,36 @@ public:
/// Used for automapping features
virtual std::vector<Common::ParamPackage> GetInputDevices() const {
return {};
- };
+ }
/// Retrieves the button mappings for the given device
virtual InputCommon::ButtonMapping GetButtonMappingForDevice(
[[maybe_unused]] const Common::ParamPackage& params) {
return {};
- };
+ }
/// Retrieves the analog mappings for the given device
virtual InputCommon::AnalogMapping GetAnalogMappingForDevice(
[[maybe_unused]] const Common::ParamPackage& params) {
return {};
- };
+ }
/// Retrieves the motion mappings for the given device
virtual InputCommon::MotionMapping GetMotionMappingForDevice(
[[maybe_unused]] const Common::ParamPackage& params) {
return {};
- };
+ }
/// Retrieves the name of the given input.
virtual Common::Input::ButtonNames GetUIName(
[[maybe_unused]] const Common::ParamPackage& params) const {
return Common::Input::ButtonNames::Engine;
- };
+ }
/// Retrieves the index number of the given hat button direction
virtual u8 GetHatButtonId([[maybe_unused]] const std::string& direction_name) const {
return 0;
- };
+ }
void PreSetController(const PadIdentifier& identifier);
void PreSetButton(const PadIdentifier& identifier, int button);