Commit 7e3b7dbcb6237e9a7502e5ddd3146b4100845827

Ryan C. Gordon 2013-08-17T20:46:34

Patched to compile with Visual Studio.

diff --git a/src/timer/windows/SDL_systimer.c b/src/timer/windows/SDL_systimer.c
index afa77c1..c3b54f5 100644
--- a/src/timer/windows/SDL_systimer.c
+++ b/src/timer/windows/SDL_systimer.c
@@ -108,15 +108,15 @@ SDL_InitTicks(void)
 Uint32
 SDL_GetTicks(void)
 {
-    if (!ticks_started) {
-        SDL_InitTicks();
-    }
-
     DWORD now;
 #ifndef USE_GETTICKCOUNT
     LARGE_INTEGER hires_now;
 #endif
 
+    if (!ticks_started) {
+        SDL_InitTicks();
+    }
+
 #ifdef USE_GETTICKCOUNT
     now = GetTickCount();
 #else