summaryrefslogtreecommitdiff
path: root/src/input_common/input_engine.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-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 }