mirror of
https://github.com/scummvm/scummvm.git
synced 2025-04-02 10:52:32 -04:00
KEYMAPPER: Fix off-by-one error with keymapper action names
This commit is contained in:
parent
f16064613b
commit
9b8b737fad
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue