summaryrefslogtreecommitdiff
path: root/src/input_common/input_engine.h
diff options
context:
space:
mode:
authorGravatar Lioncash2021-12-13 09:34:46 -0500
committerGravatar Lioncash2021-12-13 09:57:51 -0500
commite51b852aee249b4f462ba3a769340910aa6a88c7 (patch)
tree842290a9187968fe7541860226c6272a50e1ec3e /src/input_common/input_engine.h
parentinput_engine: Iterate by reference rather than by value where applicable (diff)
downloadyuzu-e51b852aee249b4f462ba3a769340910aa6a88c7.tar.gz
yuzu-e51b852aee249b4f462ba3a769340910aa6a88c7.tar.xz
yuzu-e51b852aee249b4f462ba3a769340910aa6a88c7.zip
input_engine: Remove left-over namespace qualifiers
These types are part of the InputCommon namespace.
Diffstat (limited to 'src/input_common/input_engine.h')
-rw-r--r--src/input_common/input_engine.h6
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:
139 } 139 }
140 140
141 /// Retrieves the button mappings for the given device 141 /// Retrieves the button mappings for the given device
142 virtual InputCommon::ButtonMapping GetButtonMappingForDevice( 142 virtual ButtonMapping GetButtonMappingForDevice(
143 [[maybe_unused]] const Common::ParamPackage& params) { 143 [[maybe_unused]] const Common::ParamPackage& params) {
144 return {}; 144 return {};
145 } 145 }
146 146
147 /// Retrieves the analog mappings for the given device 147 /// Retrieves the analog mappings for the given device
148 virtual InputCommon::AnalogMapping GetAnalogMappingForDevice( 148 virtual AnalogMapping GetAnalogMappingForDevice(
149 [[maybe_unused]] const Common::ParamPackage& params) { 149 [[maybe_unused]] const Common::ParamPackage& params) {
150 return {}; 150 return {};
151 } 151 }
152 152
153 /// Retrieves the motion mappings for the given device 153 /// Retrieves the motion mappings for the given device
154 virtual InputCommon::MotionMapping GetMotionMappingForDevice( 154 virtual MotionMapping GetMotionMappingForDevice(
155 [[maybe_unused]] const Common::ParamPackage& params) { 155 [[maybe_unused]] const Common::ParamPackage& params) {
156 return {}; 156 return {};
157 } 157 }