From 9a5eea0cf34bdf25b2217386e316d77015e16cd5 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 --HG-- extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40518 --- 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)