summaryrefslogtreecommitdiff
path: root/video
diff options
context:
space:
mode:
authorDarkvater <Darkvater@openttd.org>2006-11-28 21:13:45 +0000
committerDarkvater <Darkvater@openttd.org>2006-11-28 21:13:45 +0000
commit5f1d3498466bd598b870392c43520d75967bc19d (patch)
treede621a7f64922939ba8fd47c99f62663d1279fad /video
parent23762f9534df43e9b0232e4fe2d4d0afab3e391c (diff)
downloadopenttd-5f1d3498466bd598b870392c43520d75967bc19d.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.c1
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