summaryrefslogtreecommitdiff
path: root/src/hotkeys.cpp
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2010-07-04 09:35:06 +0000
committerfrosch <frosch@openttd.org>2010-07-04 09:35:06 +0000
commit6c6d1e379270b3c1cf6403bbb69db61d076d26b9 (patch)
tree7a0cab05175fdf53942d509731bae9e9388ce689 /src/hotkeys.cpp
parent397d1186d731a62ffa39a315f13cbafabee75324 (diff)
downloadopenttd-6c6d1e379270b3c1cf6403bbb69db61d076d26b9.tar.xz
(svn r20072) -Fix (r20065): NUM_MINUS was stored as NUM_PLUS in config file.
Diffstat (limited to 'src/hotkeys.cpp')
-rw-r--r--src/hotkeys.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hotkeys.cpp b/src/hotkeys.cpp
index 14fb292c2..17029795f 100644
--- a/src/hotkeys.cpp
+++ b/src/hotkeys.cpp
@@ -53,7 +53,7 @@ static const KeycodeNames _keycode_to_name[] = {
{"PLUS", (WindowKeyCodes)'+'},
{"COMMA", (WindowKeyCodes)','},
{"NUM_PLUS", WKC_NUM_PLUS},
- {"NUM_PLUS", WKC_NUM_MINUS},
+ {"NUM_MINUS", WKC_NUM_MINUS},
{"=", WKC_EQUALS},
{"-", WKC_MINUS},
};