From 86f4959b55259bb1fc5ef4abef886f98d03dc132 Mon Sep 17 00:00:00 2001 From: orudge Date: Sun, 15 Aug 2004 21:13:15 +0000 Subject: [PATCH] (svn r61) Fixed warning in sdl.c --- sdl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdl.c b/sdl.c index 2cd2fd511b..3de59d3861 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;