(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.
pull/155/head
Darkvater 18 years ago
parent 23762f9534
commit 5f1d349846

@ -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

Loading…
Cancel
Save