blob: 5941a105b8cea8f75918c379a52b241cd4f56e61 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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];
}
}
|