SDL2's SDL_TimerID is not a pointer anymore

This commit is contained in:
dhewg 2012-07-20 00:28:47 +02:00
parent 454bebf99f
commit f120900000

View file

@ -240,7 +240,7 @@ idCommonLocal::idCommonLocal( void ) {
config_compressor = NULL;
#endif
async_timer = NULL;
async_timer = 0;
}
/*
@ -2849,7 +2849,7 @@ idCommonLocal::Shutdown
void idCommonLocal::Shutdown( void ) {
if (async_timer) {
SDL_RemoveTimer(async_timer);
async_timer = NULL;
async_timer = 0;
}
idAsyncNetwork::server.Kill();