From f120900000ef1134f18c94dbf44360b08f36bc65 Mon Sep 17 00:00:00 2001 From: dhewg Date: Fri, 20 Jul 2012 00:28:47 +0200 Subject: [PATCH] SDL2's SDL_TimerID is not a pointer anymore --- neo/framework/Common.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/neo/framework/Common.cpp b/neo/framework/Common.cpp index 14956568..10b308e5 100644 --- a/neo/framework/Common.cpp +++ b/neo/framework/Common.cpp @@ -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();