summaryrefslogtreecommitdiff
path: root/sdl.c
diff options
context:
space:
mode:
authordarkvater <darkvater@openttd.org>2004-09-10 22:43:40 +0000
committerdarkvater <darkvater@openttd.org>2004-09-10 22:43:40 +0000
commit80cb0b7fd67758743208bff73d0a13cec39e62dc (patch)
treeebb1dedefbb3b4c4c5e525c3af87944691d0bd2b /sdl.c
parent0caa819190340b7bdbc8d9df41603fcea4d72246 (diff)
downloadopenttd-80cb0b7fd67758743208bff73d0a13cec39e62dc.tar.xz
(svn r197) -Fix: Disable Fast Forward in network games visually (didn't work anyways, just showed graphical output)
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 56c16add2..ad8bc6363 100644
--- a/sdl.c
+++ b/sdl.c
@@ -542,7 +542,7 @@ static int SdlVideoMainLoop()
#else
if (keys[SDLK_TAB]) {
#endif
- _fast_forward |= 2;
+ if (!_networking) _fast_forward |= 2;
} else if (_fast_forward&2) {
_fast_forward = 0;
}