diff options
author | rubidium <rubidium@openttd.org> | 2009-01-20 16:51:55 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-01-20 16:51:55 +0000 |
commit | 7c5a61863975862b7c22441db700ef75c5f8840b (patch) | |
tree | f9dd4fc7b570b06c529e9e2384c58c0dd92f2003 /src/video | |
parent | 593f38046270f90c62f6269d292c1dde9b440147 (diff) | |
download | openttd-7c5a61863975862b7c22441db700ef75c5f8840b.tar.xz |
(svn r15176) -Fix [FS#2554]: querying the content server could free when resolving the hostname or connecting takes long/is timing out.
Diffstat (limited to 'src/video')
-rw-r--r-- | src/video/dedicated_v.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/video/dedicated_v.cpp b/src/video/dedicated_v.cpp index bd3a1bd2f..57f936d98 100644 --- a/src/video/dedicated_v.cpp +++ b/src/video/dedicated_v.cpp @@ -297,6 +297,7 @@ void VideoDriver_Dedicated::MainLoop() DedicatedHandleKeyInput(); cur_ticks = GetTime(); + _realtime_tick += cur_ticks - prev_cur_ticks; if (cur_ticks >= next_tick || cur_ticks < prev_cur_ticks) { next_tick = cur_ticks + 30; |