Просмотр исходного кода

input_engine: Remove left-over namespace qualifiers

These types are part of the InputCommon namespace.
Lioncash 4 лет назад
Родитель
Сommit
e51b852aee
1 измененных файлов с 3 добавлено и 3 удалено
  1. 3 3
      src/input_common/input_engine.h

+ 3 - 3
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 {};
     }