Changeset - r20926:7f51c3d193f0
[Not reviewed]
master
0 1 0
rubidium - 11 years ago 2013-11-13 15:54:44
rubidium@openttd.org
(svn r25973) -Fix [FS#5679]: comma key collided with F12 key for hotkeys; also remove '+' as that is generally not a key (the '+' on the numpad is a separate one)
1 file changed with 1 insertions and 2 deletions:
0 comments (0 inline, 0 general)
src/hotkeys.cpp
Show inline comments
 
@@ -51,14 +51,13 @@ static const KeycodeNames _keycode_to_na
 
	{"F8", WKC_F8},
 
	{"F9", WKC_F9},
 
	{"F10", WKC_F10},
 
	{"F11", WKC_F11},
 
	{"F12", WKC_F12},
 
	{"PAUSE", WKC_PAUSE},
 
	{"PLUS", (WindowKeyCodes)'+'},
 
	{"COMMA", (WindowKeyCodes)','},
 
	{"COMMA", WKC_COMMA},
 
	{"NUM_PLUS", WKC_NUM_PLUS},
 
	{"NUM_MINUS", WKC_NUM_MINUS},
 
	{"=", WKC_EQUALS},
 
	{"-", WKC_MINUS},
 
};
 

	
0 comments (0 inline, 0 general)