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.cpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/common/key_map.cpp b/src/common/key_map.cpp
new file mode 100644
index 00000000..5941a105
--- /dev/null
+++ b/src/common/key_map.cpp
@@ -0,0 +1,21 @@
+// Copyright 2013 Dolphin Emulator Project
+// Licensed under GPLv2
+// Refer to the license.txt file included.
+
+#include "key_map.h"
+#include <map>
+
+
+namespace KeyMap {
+
+std::map<CitraKey, HID_User::PADState> g_key_map;
+
+void SetKeyMapping(CitraKey key, HID_User::PADState padState) {
+ g_key_map[key].hex = padState.hex;
+}
+
+HID_User::PADState Get3DSKey(CitraKey key) {
+ return g_key_map[key];
+}
+
+}