summaryrefslogtreecommitdiffstats
path: root/src/common/key_map.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-01-22 00:36:46 +0100
committerbunnei <bunneidev@gmail.com>2015-01-22 00:36:46 +0100
commit0c7498545f7f9beeb7e8070e1a1955a8d6f40bb6 (patch)
tree9eaedc4e6d764f3436a45ba05e79f16fec1ff299 /src/common/key_map.h
parentMerge pull request #429 from Kingcom/titlebar (diff)
parentAdded HID_SPVR service and split HID_U implementation into service/hid/hid.xxx (diff)
downloadyuzu-0c7498545f7f9beeb7e8070e1a1955a8d6f40bb6.tar
yuzu-0c7498545f7f9beeb7e8070e1a1955a8d6f40bb6.tar.gz
yuzu-0c7498545f7f9beeb7e8070e1a1955a8d6f40bb6.tar.bz2
yuzu-0c7498545f7f9beeb7e8070e1a1955a8d6f40bb6.tar.lz
yuzu-0c7498545f7f9beeb7e8070e1a1955a8d6f40bb6.tar.xz
yuzu-0c7498545f7f9beeb7e8070e1a1955a8d6f40bb6.tar.zst
yuzu-0c7498545f7f9beeb7e8070e1a1955a8d6f40bb6.zip
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 8d949b852..0ecec714f 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);
}