From f766db82dc91572c59850adf13b22c4440668c37 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 --HG-- extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401775 --- 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();