From 67a111540803de9966052f10199cd7cc7c7376eb Mon Sep 17 00:00:00 2001 From: rubidium Date: Mon, 1 Jan 2007 19:37:53 +0000 Subject: [PATCH] (svn r7727) -Fix (FS#498): sometimes ALT-TAB could trigger the fast forward. --- video/sdl_v.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/video/sdl_v.c b/video/sdl_v.c index 77d7a1e53c..d94819dedf 100644 --- a/video/sdl_v.c +++ b/video/sdl_v.c @@ -440,7 +440,9 @@ static void SdlVideoMainLoop(void) #if defined(_DEBUG) if (_shift_pressed) #else - if (keys[SDLK_TAB]) + /* Speedup when pressing tab, except when using ALT+TAB + * to switch to another application */ + if (keys[SDLK_TAB] && (mod & KMOD_ALT) == 0) #endif { if (!_networking && _game_mode != GM_MENU) _fast_forward |= 2;