summaryrefslogtreecommitdiff
path: root/console.c
diff options
context:
space:
mode:
authordominik <dominik@openttd.org>2004-08-24 11:53:30 +0000
committerdominik <dominik@openttd.org>2004-08-24 11:53:30 +0000
commit27e9f5888eed7f0b5efabbf0bf11e39cd9cc67e0 (patch)
treeb2948b04966b7e1fd500a5065dd09790bf04a1b1 /console.c
parentce0f8a7bcd77d910554768c790f9f5103697da6a (diff)
downloadopenttd-27e9f5888eed7f0b5efabbf0bf11e39cd9cc67e0.tar.xz
(svn r130) Change: hotkey for console is Backquote (the key left to '1', regardless of keyboard layout
Diffstat (limited to 'console.c')
-rw-r--r--console.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/console.c b/console.c
index 765073ed8..2f6520491 100644
--- a/console.c
+++ b/console.c
@@ -108,7 +108,7 @@ static void IConsoleWndProc(Window *w, WindowEvent *e)
case WE_KEYPRESS:
e->keypress.cont=false;
- if (e->keypress.keycode == WKC_TAB)
+ if (e->keypress.keycode == WKC_BACKQUOTE)
{
IConsoleSwitch();
} else