mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2024-11-10 07:21:58 +00:00
mimor style tidy-up.
This commit is contained in:
parent
226a0e7463
commit
96cca58a68
1 changed files with 1 additions and 1 deletions
|
@ -1274,7 +1274,7 @@ static void GL_CheckExtensions (void)
|
|||
// glGenerateMipmap for warp textures
|
||||
if (COM_CheckParm("-nowarpmipmaps"))
|
||||
Con_Warning ("glGenerateMipmap disabled at command line\n");
|
||||
else if ((GL_GenerateMipmap = SDL_GL_GetProcAddress("glGenerateMipmap")))
|
||||
else if ((GL_GenerateMipmap = SDL_GL_GetProcAddress("glGenerateMipmap")) != NULL)
|
||||
Con_Printf ("FOUND: glGenerateMipmap\n");
|
||||
else
|
||||
Con_Warning ("glGenerateMipmap not available, liquids won't have mipmaps\n");
|
||||
|
|
Loading…
Reference in a new issue