mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2025-02-09 01:01:07 +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
|
// glGenerateMipmap for warp textures
|
||||||
if (COM_CheckParm("-nowarpmipmaps"))
|
if (COM_CheckParm("-nowarpmipmaps"))
|
||||||
Con_Warning ("glGenerateMipmap disabled at command line\n");
|
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");
|
Con_Printf ("FOUND: glGenerateMipmap\n");
|
||||||
else
|
else
|
||||||
Con_Warning ("glGenerateMipmap not available, liquids won't have mipmaps\n");
|
Con_Warning ("glGenerateMipmap not available, liquids won't have mipmaps\n");
|
||||||
|
|
Loading…
Reference in a new issue