diff options
author | Lioncash <mathew1800@gmail.com> | 2021-12-13 15:34:46 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2021-12-13 15:57:51 +0100 |
commit | e51b852aee249b4f462ba3a769340910aa6a88c7 (patch) | |
tree | 842290a9187968fe7541860226c6272a50e1ec3e | |
parent | input_engine: Iterate by reference rather than by value where applicable (diff) | |
download | yuzu-e51b852aee249b4f462ba3a769340910aa6a88c7.tar yuzu-e51b852aee249b4f462ba3a769340910aa6a88c7.tar.gz yuzu-e51b852aee249b4f462ba3a769340910aa6a88c7.tar.bz2 yuzu-e51b852aee249b4f462ba3a769340910aa6a88c7.tar.lz yuzu-e51b852aee249b4f462ba3a769340910aa6a88c7.tar.xz yuzu-e51b852aee249b4f462ba3a769340910aa6a88c7.tar.zst yuzu-e51b852aee249b4f462ba3a769340910aa6a88c7.zip |
Diffstat (limited to '')
-rw-r--r-- | src/input_common/input_engine.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/input_common/input_engine.h b/src/input_common/input_engine.h index f9fa5fec3..59707e173 100644 --- a/src/input_common/input_engine.h +++ b/src/input_common/input_engine.h @@ -139,19 +139,19 @@ public: } /// Retrieves the button mappings for the given device - virtual InputCommon::ButtonMapping GetButtonMappingForDevice( + virtual ButtonMapping GetButtonMappingForDevice( [[maybe_unused]] const Common::ParamPackage& params) { return {}; } /// Retrieves the analog mappings for the given device - virtual InputCommon::AnalogMapping GetAnalogMappingForDevice( + virtual AnalogMapping GetAnalogMappingForDevice( [[maybe_unused]] const Common::ParamPackage& params) { return {}; } /// Retrieves the motion mappings for the given device - virtual InputCommon::MotionMapping GetMotionMappingForDevice( + virtual MotionMapping GetMotionMappingForDevice( [[maybe_unused]] const Common::ParamPackage& params) { return {}; } |