From b23191ddaea64c34e67e027f1992da4ece349a61 Mon Sep 17 00:00:00 2001 From: Darkvater Date: Tue, 28 Nov 2006 21:13:45 +0000 Subject: [PATCH] (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. --- video/sdl_v.c | 1 - 1 file changed, 1 deletion(-) diff --git a/video/sdl_v.c b/video/sdl_v.c index bdaed1eb5f..8e997a8572 100644 --- a/video/sdl_v.c +++ b/video/sdl_v.c @@ -285,7 +285,6 @@ static uint32 ConvertSdlKeyIntoMy(SDL_keysym *sym) #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