KEYMAPPER: Fix off-by-one error with keymapper action names

This commit is contained in:
Eugene Sandulenko
2014-10-26 22:20:57 +01:00
parent f16064613b
commit 9b8b737fad
+1 -1
View File
@@ -37,7 +37,7 @@ namespace Common {
struct HardwareInput;
class Keymap;
#define ACTION_ID_SIZE (4)
#define ACTION_ID_SIZE (5)
struct KeyActionEntry {
const KeyState ks;