gl_vidsdl.c: fixed copy+paste error from rev. 119.

git-svn-id: http://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@123 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
sezero 2010-04-23 07:25:39 +00:00
parent c9918a6861
commit 644f818b5a
1 changed files with 1 additions and 2 deletions

View File

@ -91,7 +91,6 @@ viddef_t vid; // global video state
//unsigned short d_8to16table[256]; //johnfitz -- never used
//unsigned char d_15to8table[65536]; //johnfitz -- never used
PFNGLARRAYELEMENTEXTPROC glArrayElementEXT = NULL;
PFNGLCOLORPOINTEREXTPROC glColorPointerEXT = NULL;
PFNGLTEXCOORDPOINTEREXTPROC glTexCoordPointerEXT = NULL;
@ -616,7 +615,7 @@ void GL_CheckExtensions (void)
gl_mtexable = true;
}
else
Con_Warning ("multitexture not supported (wglGetProcAddress failed)\n");
Con_Warning ("multitexture not supported (SDL_GL_GetProcAddress failed)\n");
}
else
if (strstr(gl_extensions, "GL_SGIS_multitexture"))