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 | 5f1d3498466bd598b870392c43520d75967bc19d (patch) | |
tree | de621a7f64922939ba8fd47c99f62663d1279fad /video/sdl_v.c | |
parent | 23762f9534df43e9b0232e4fe2d4d0afab3e391c (diff) | |
download | openttd-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/sdl_v.c')
-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 |