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 /core/global_constants.cpp | |
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 'core/global_constants.cpp')
-rw-r--r-- | core/global_constants.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/global_constants.cpp b/core/global_constants.cpp index c306744d35..a183255b06 100644 --- a/core/global_constants.cpp +++ b/core/global_constants.cpp @@ -106,7 +106,7 @@ static _GlobalConstant _global_constants[]={ BIND_GLOBAL_CONSTANT( KEY_KP_ENTER ), BIND_GLOBAL_CONSTANT( KEY_KP_MULTIPLY ), BIND_GLOBAL_CONSTANT( KEY_KP_DIVIDE ), - BIND_GLOBAL_CONSTANT( KEY_KP_SUBSTRACT ), + BIND_GLOBAL_CONSTANT( KEY_KP_SUBTRACT ), BIND_GLOBAL_CONSTANT( KEY_KP_PERIOD ), BIND_GLOBAL_CONSTANT( KEY_KP_ADD ), BIND_GLOBAL_CONSTANT( KEY_KP_0 ), |