aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/common/key_map.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/key_map.cpp')
-rw-r--r--src/common/key_map.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/key_map.cpp b/src/common/key_map.cpp
index d8945bb1..844d5df6 100644
--- a/src/common/key_map.cpp
+++ b/src/common/key_map.cpp
@@ -7,18 +7,18 @@
namespace KeyMap {
-static std::map<HostDeviceKey, HID_User::PadState> key_map;
+static std::map<HostDeviceKey, Service::HID::PadState> key_map;
static int next_device_id = 0;
int NewDeviceId() {
return next_device_id++;
}
-void SetKeyMapping(HostDeviceKey key, HID_User::PadState padState) {
+void SetKeyMapping(HostDeviceKey key, Service::HID::PadState padState) {
key_map[key].hex = padState.hex;
}
-HID_User::PadState GetPadKey(HostDeviceKey key) {
+Service::HID::PadState GetPadKey(HostDeviceKey key) {
return key_map[key];
}