diff options
Diffstat (limited to 'src/timer/SDL_timer_c.h')
-rw-r--r-- | src/timer/SDL_timer_c.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/timer/SDL_timer_c.h b/src/timer/SDL_timer_c.h index c759bcd847..1574853108 100644 --- a/src/timer/SDL_timer_c.h +++ b/src/timer/SDL_timer_c.h @@ -23,8 +23,8 @@ /* Useful functions and variables from SDL_timer.c */ #include "SDL_timer.h" -#define ROUND_RESOLUTION(X) \ - (((X+TIMER_RESOLUTION-1)/TIMER_RESOLUTION)*TIMER_RESOLUTION) +#define ROUND_RESOLUTION(X) \ + (((X+TIMER_RESOLUTION-1)/TIMER_RESOLUTION)*TIMER_RESOLUTION) extern void SDL_InitTicks(void); extern int SDL_TimerInit(void); |