summaryrefslogtreecommitdiff
path: root/sdl.c
diff options
context:
space:
mode:
authordominik <dominik@openttd.org>2005-01-16 13:59:07 +0000
committerdominik <dominik@openttd.org>2005-01-16 13:59:07 +0000
commitac5a1406bc04b088730a7f83bab338c278e5cf76 (patch)
treebf111366b357754f128c0c4577279d87668b2194 /sdl.c
parentf987f5f119dac02d3863e47e3eecc0e656536bd3 (diff)
downloadopenttd-ac5a1406bc04b088730a7f83bab338c278e5cf76.tar.xz
(svn r1541) Fix: [ 1100767 ] fast forward in main menu
Diffstat (limited to 'sdl.c')
-rw-r--r--sdl.c2
1 files changed, 1 insertions, 1 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;
}