summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sdl.c2
-rw-r--r--win32.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/sdl.c b/sdl.c
index 98d1805c6..dbbfecadc 100644
--- a/sdl.c
+++ b/sdl.c
@@ -589,7 +589,7 @@ static int SdlVideoMainLoop(void)
if (keys[SDLK_TAB])
#endif
{
- if (!_networking) _fast_forward |= 2;
+ if (!_networking && _game_mode != GM_MENU) _fast_forward |= 2;
} else if (_fast_forward & 2) {
_fast_forward = 0;
}
diff --git a/win32.c b/win32.c
index 9a2e0ab70..2a1b328c7 100644
--- a/win32.c
+++ b/win32.c
@@ -697,7 +697,7 @@ static int Win32GdiMainLoop()
#else
if (_wnd.has_focus && GetAsyncKeyState(VK_TAB) < 0) {
#endif
- if (!_networking) _fast_forward |= 2;
+ if (!_networking && _game_mode != GM_MENU) _fast_forward |= 2;
} else if (_fast_forward&2) {
_fast_forward = 0;
}