diff options
author | orudge <orudge@openttd.org> | 2004-08-15 21:13:15 +0000 |
---|---|---|
committer | orudge <orudge@openttd.org> | 2004-08-15 21:13:15 +0000 |
commit | 86f4959b55259bb1fc5ef4abef886f98d03dc132 (patch) | |
tree | f19d8f0f3d861ba8ce198afa5efea8d6bae414ac | |
parent | 27f6fcae4cd848f3c8e322526ba90668981a5020 (diff) | |
download | openttd-86f4959b55259bb1fc5ef4abef886f98d03dc132.tar.xz |
(svn r61) Fixed warning in sdl.c
-rw-r--r-- | sdl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |