diff --git a/engine/platform/sdl/vid_sdl.c b/engine/platform/sdl/vid_sdl.c index 4fc6b72b..3383fe56 100644 --- a/engine/platform/sdl/vid_sdl.c +++ b/engine/platform/sdl/vid_sdl.c @@ -422,15 +422,11 @@ GL_GetProcAddress */ void *GL_GetProcAddress( const char *name ) { -#if defined( XASH_NANOGL ) - void *func = nanoGL_GetProcAddress( name ); -#else void *func = SDL_GL_GetProcAddress( name ); -#endif if( !func ) { - Con_Reportf( S_ERROR "Error: GL_GetProcAddress failed for %s\n", name ); + Con_Reportf( S_ERROR "GL_GetProcAddress failed for %s\n", name ); } return func;