aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/common/key_map.h
diff options
context:
space:
mode:
authorGravatar archshift <admin@archshift.com>2015-01-18 15:07:48 -0800
committerGravatar archshift <admin@archshift.com>2015-01-21 13:31:10 -0800
commit1f109c6b497565afe99b9c9cfbb61de5a87e7374 (patch)
tree9eaedc4e6d764f3436a45ba05e79f16fec1ff299 /src/common/key_map.h
parent8946df97b5113fbec4289b0a66cb565bdfd2136e (diff)
Added HID_SPVR service and split HID_U implementation into service/hid/hid.xxx
Diffstat (limited to 'src/common/key_map.h')
-rw-r--r--src/common/key_map.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/key_map.h b/src/common/key_map.h
index 8d949b85..0ecec714 100644
--- a/src/common/key_map.h
+++ b/src/common/key_map.h
@@ -4,7 +4,7 @@
#pragma once
-#include "core/hle/service/hid_user.h"
+#include "core/hle/service/hid/hid.h"
namespace KeyMap {
@@ -35,11 +35,11 @@ int NewDeviceId();
/**
* Maps a device-specific key to a PadState.
*/
-void SetKeyMapping(HostDeviceKey key, HID_User::PadState padState);
+void SetKeyMapping(HostDeviceKey key, Service::HID::PadState padState);
/**
* Gets the PadState that's mapped to the provided device-specific key.
*/
-HID_User::PadState GetPadKey(HostDeviceKey key);
+Service::HID::PadState GetPadKey(HostDeviceKey key);
}