comparison src/timer/macos/SDL_MPWtimer.c @ 1361:19418e4422cb

New configure-based build system. Still work in progress, but much improved
author Sam Lantinga <slouken@libsdl.org>
date Thu, 16 Feb 2006 10:11:48 +0000
parents c9b51268668f
children d910939febfa
comparison
equal deleted inserted replaced
1360:70a9cfb4cf1b 1361:19418e4422cb
27 #include <Processes.h> 27 #include <Processes.h>
28 28
29 #include <LowMem.h> 29 #include <LowMem.h>
30 30
31 #include "SDL_timer.h" 31 #include "SDL_timer.h"
32 #include "SDL_timer_c.h" 32 #include "../SDL_timer_c.h"
33 33
34 #define MS_PER_TICK (1000/60) /* MacOS tick = 1/60 second */ 34 #define MS_PER_TICK (1000/60) /* MacOS tick = 1/60 second */
35 35
36 /* Note: This is only a step above the original 1/60s implementation. 36 /* Note: This is only a step above the original 1/60s implementation.
37 * For a good implementation, see FastTimes.[ch], by Matt Slot. 37 * For a good implementation, see FastTimes.[ch], by Matt Slot.