summaryrefslogtreecommitdiff
path: root/sdl.c
diff options
context:
space:
mode:
authororudge <orudge@openttd.org>2004-08-15 21:13:15 +0000
committerorudge <orudge@openttd.org>2004-08-15 21:13:15 +0000
commit86f4959b55259bb1fc5ef4abef886f98d03dc132 (patch)
treef19d8f0f3d861ba8ce198afa5efea8d6bae414ac /sdl.c
parent27f6fcae4cd848f3c8e322526ba90668981a5020 (diff)
downloadopenttd-86f4959b55259bb1fc5ef4abef886f98d03dc132.tar.xz
(svn r61) Fixed warning in sdl.c
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 2cd2fd511..3de59d386 100644
--- a/sdl.c
+++ b/sdl.c
@@ -501,7 +501,7 @@ static void SdlVideoStop()
static int SdlVideoMainLoop()
{
- uint32 next_tick = SDL_CALL SDL_GetTicks() + 30, cur_ticks, pal_tick ;
+ uint32 next_tick = SDL_CALL SDL_GetTicks() + 30, cur_ticks, pal_tick = 0;
int i;
uint32 mod;
int numkeys;