Make sure code is only compiled if the appropriate subsystem is enabled

This commit is contained in:
Sam Lantinga
2006-04-14 04:46:47 +00:00
parent 3ca6badbcf
commit 4ffa1daabc
54 changed files with 173 additions and 6 deletions

View File

@@ -21,6 +21,8 @@
*/
#include "SDL_config.h"
#if defined(SDL_TIMER_DUMMY) || defined(SDL_TIMERS_DISABLED)
#include "SDL_timer.h"
#include "../SDL_timer_c.h"
@@ -85,3 +87,5 @@ void SDL_SYS_StopTimer(void)
{
return;
}
#endif /* SDL_TIMER_DUMMY || SDL_TIMERS_DISABLED */