mirror of
https://github.com/dhewm/dhewm3.git
synced 2025-03-20 17:51:02 +00:00
SDL2's SDL_TimerID is not a pointer anymore
This commit is contained in:
parent
454bebf99f
commit
f120900000
1 changed files with 2 additions and 2 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue