From 5f27659bf017e539c619d13797dfba6205ecdd54 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Mon, 7 Oct 2002 15:19:17 +0000 Subject: [PATCH] Fixed building timer code on Windows CE --- src/timer/win32/SDL_systimer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/timer/win32/SDL_systimer.c b/src/timer/win32/SDL_systimer.c index ed43bcae1..11fa67f7e 100644 --- a/src/timer/win32/SDL_systimer.c +++ b/src/timer/win32/SDL_systimer.c @@ -33,8 +33,8 @@ static char rcsid = #include "SDL_error.h" #ifdef _WIN32_WCE -//#define USE_GETTICKCOUNT -//#define USE_SETTIMER +#define USE_GETTICKCOUNT +#define USE_SETTIMER #endif #define TIME_WRAP_VALUE (~(DWORD)0)