summaryrefslogtreecommitdiff
path: root/src/video/allegro_v.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2010-11-19 10:35:59 +0000
committerrubidium <rubidium@openttd.org>2010-11-19 10:35:59 +0000
commitab44c91778618147efd12f62fd3b74df872e599d (patch)
treed9ca07e5fd6a7f6ead55dc34eac6c18a53e93ac5 /src/video/allegro_v.cpp
parent43692e514c476923e35d59fc2fe9053e381a4920 (diff)
downloadopenttd-ab44c91778618147efd12f62fd3b74df872e599d.tar.xz
(svn r21252) -Codechange: introduce a constant for the number of milliseconds per game tick and use it
Diffstat (limited to 'src/video/allegro_v.cpp')
-rw-r--r--src/video/allegro_v.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video/allegro_v.cpp b/src/video/allegro_v.cpp
index c4a8341c9..bcec85333 100644
--- a/src/video/allegro_v.cpp
+++ b/src/video/allegro_v.cpp
@@ -474,7 +474,7 @@ void VideoDriver_Allegro::MainLoop()
{
uint32 cur_ticks = GetTime();
uint32 last_cur_ticks = cur_ticks;
- uint32 next_tick = cur_ticks + 30;
+ uint32 next_tick = cur_ticks + MILLISECONDS_PER_TICK;
uint32 pal_tick = 0;
for (;;) {
@@ -501,7 +501,7 @@ void VideoDriver_Allegro::MainLoop()
if (cur_ticks >= next_tick || (_fast_forward && !_pause_mode) || cur_ticks < prev_cur_ticks) {
_realtime_tick += cur_ticks - last_cur_ticks;
last_cur_ticks = cur_ticks;
- next_tick = cur_ticks + 30;
+ next_tick = cur_ticks + MILLISECONDS_PER_TICK;
bool old_ctrl_pressed = _ctrl_pressed;