diff options
author | Darkvater <darkvater@openttd.org> | 2006-11-28 21:13:45 +0000 |
---|---|---|
committer | Darkvater <darkvater@openttd.org> | 2006-11-28 21:13:45 +0000 |
commit | b23191ddaea64c34e67e027f1992da4ece349a61 (patch) | |
tree | de621a7f64922939ba8fd47c99f62663d1279fad /video | |
parent | 86d4052b1e1c4d9df2caf84956c8e47378607fad (diff) | |
download | openttd-b23191ddaea64c34e67e027f1992da4ece349a61.tar.xz |
(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.
Diffstat (limited to 'video')
-rw-r--r-- | video/sdl_v.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/video/sdl_v.c b/video/sdl_v.c index bdaed1eb5..8e997a857 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 |