From 7d93fb869072a99c90634126d173c29de97ef51e Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Thu, 11 May 2006 06:06:21 +0000 Subject: [PATCH] Fixed MacOS Classic build --- src/timer/macos/SDL_systimer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/timer/macos/SDL_systimer.c b/src/timer/macos/SDL_systimer.c index b91443769..33fb664bf 100644 --- a/src/timer/macos/SDL_systimer.c +++ b/src/timer/macos/SDL_systimer.c @@ -36,7 +36,7 @@ #include "FastTimes.h" -#ifdef TARGET_API_MAC_CARBON +#if TARGET_API_MAC_CARBON #define NewTimerProc NewTimerUPP #endif @@ -71,7 +71,7 @@ void SDL_Delay(Uint32 ms) stop = SDL_GetTicks() + ms; do { - #ifdef TARGET_API_MAC_CARBON + #if TARGET_API_MAC_CARBON MPYield(); #else SystemTask();