Changeset - r15419:80bef2ec2a68
[Not reviewed]
master
0 1 0
frosch - 14 years ago 2010-07-04 09:35:06
frosch@openttd.org
(svn r20072) -Fix (r20065): NUM_MINUS was stored as NUM_PLUS in config file.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/hotkeys.cpp
Show inline comments
 
@@ -50,13 +50,13 @@ static const KeycodeNames _keycode_to_na
 
	{"F11", WKC_F11},
 
	{"F12", WKC_F12},
 
	{"PAUSE", WKC_PAUSE},
 
	{"PLUS", (WindowKeyCodes)'+'},
 
	{"COMMA", (WindowKeyCodes)','},
 
	{"NUM_PLUS", WKC_NUM_PLUS},
 
	{"NUM_PLUS", WKC_NUM_MINUS},
 
	{"NUM_MINUS", WKC_NUM_MINUS},
 
	{"=", WKC_EQUALS},
 
	{"-", WKC_MINUS},
 
};
 

	
 
/**
 
 * Try to parse a single part of a keycode.
0 comments (0 inline, 0 general)