summaryrefslogtreecommitdiff
path: root/main_gui.c
diff options
context:
space:
mode:
authordominik <dominik@openttd.org>2004-08-24 12:34:16 +0000
committerdominik <dominik@openttd.org>2004-08-24 12:34:16 +0000
commitc32166a5c9d6cd969bdc3a6942b62286a685d26f (patch)
treecef6547ba1dccc15a6de618cbb3706a3d29a93a4 /main_gui.c
parent27e9f5888eed7f0b5efabbf0bf11e39cd9cc67e0 (diff)
downloadopenttd-c32166a5c9d6cd969bdc3a6942b62286a685d26f.tar.xz
(svn r131) Completely changed hotkey from tab to backquote (not working in Windows yet)
Diffstat (limited to 'main_gui.c')
-rw-r--r--main_gui.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/main_gui.c b/main_gui.c
index edbe36fe7..334952b65 100644
--- a/main_gui.c
+++ b/main_gui.c
@@ -9,7 +9,7 @@
#include "command.h"
#include "news.h"
#include "town.h"
-#include "vehicle.h"
+#include "vehicle.h"
#include "console.h"
#include "table/animcursors.h"
@@ -1688,8 +1688,8 @@ static void MainToolbarWndProc(Window *w, WindowEvent *e)
case WKC_SHIFT | WKC_F11: ShowBuildTreesToolbar(); break;
case WKC_SHIFT | WKC_F12: ShowMusicWindow(); break;
case WKC_CTRL | 'S': _make_screenshot = 1; break;
- case WKC_CTRL | 'G': _make_screenshot = 2; break;
- case WKC_TAB: IConsoleSwitch(); e->keypress.keycode=0; break;
+ case WKC_CTRL | 'G': _make_screenshot = 2; break;
+ case WKC_BACKQUOTE: IConsoleSwitch(); e->keypress.keycode=0; break;
case WKC_CTRL | WKC_ALT | 'C': if(!_networking) ShowCheatWindow(); break;
}
} break;