diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2016-02-17 22:59:46 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2016-02-17 23:01:27 +0100 |
commit | 130f8fa1936f672ec34fd0270e1d2c0577f95eed (patch) | |
tree | c7b64d06c6a2d0bc76d8c74bfe56efdeeb7ebbff /platform/nacl/nacl_keycodes.h | |
parent | f0971ccf5f4a2d693a4e0debca5a1902a2498e76 (diff) | |
download | redot-engine-130f8fa1936f672ec34fd0270e1d2c0577f95eed.tar.gz |
Rename KEY_KP_SUBSTRACT to KEY_KP_SUBTRACT
The former name was incorrect in English, though for us latin lovers it's an understandable mistake.
Second part of and closes #3626.
Diffstat (limited to 'platform/nacl/nacl_keycodes.h')
-rw-r--r-- | platform/nacl/nacl_keycodes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/nacl/nacl_keycodes.h b/platform/nacl/nacl_keycodes.h index 45dba075db..a0642fc3b7 100644 --- a/platform/nacl/nacl_keycodes.h +++ b/platform/nacl/nacl_keycodes.h @@ -286,7 +286,7 @@ static uint32_t godot_key(uint32_t p_key, bool& is_char) { case VKEY_MULTIPLY: return KEY_KP_MULTIPLY; case VKEY_ADD: return KEY_KP_ADD; // case VKEY_SEPARATOR: return KEY_SEPARATOR; - case VKEY_SUBTRACT: return KEY_KP_SUBSTRACT; + case VKEY_SUBTRACT: return KEY_KP_SUBTRACT; case VKEY_DECIMAL: return KEY_KP_PERIOD; case VKEY_DIVIDE: return KEY_KP_DIVIDE; case VKEY_F1: return KEY_F1; |