Changeset - r5173:820e12a5bf9e
[Not reviewed]
master
0 1 0
Darkvater - 18 years ago 2006-11-28 21:13:45
darkvater@openttd.org
(svn r7283) -Revert (r1932): Remove scancode 41 for linux console because it is 49. If some linux
flavour does use 41, use proper #ifdef guards around it, because right now 'f' also
toggles console.
1 file changed with 0 insertions and 1 deletions:
0 comments (0 inline, 0 general)
video/sdl_v.c
Show inline comments
 
@@ -285,7 +285,6 @@ static uint32 ConvertSdlKeyIntoMy(SDL_ke
 
#elif defined(__sgi__)
 
	if (sym->scancode == 22) key = WKC_BACKQUOTE;
 
#else
 
	if (sym->scancode == 41) key = WKC_BACKQUOTE; // Linux console
 
	if (sym->scancode == 49) key = WKC_BACKQUOTE;
 
#endif
 

	
0 comments (0 inline, 0 general)