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
commitb119b6c474268d0bad926fb10f0ac7f2857f5a09 (patch)
treebf111366b357754f128c0c4577279d87668b2194 /sdl.c
parent340a9ab6becbfe31f410aed4de4c5bbc2a2658e5 (diff)
downloadopenttd-b119b6c474268d0bad926fb10f0ac7f2857f5a09.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;
}