* Tidy-up of q_platform.h

* Introduced Q3_BIG_ENDIAN and Q3_LITTLE_ENDIAN #defines
* Changed some stricmp to Q_stricmp so that #define stricmp strcasecmp could be
  removed
This commit is contained in:
Tim Angus 2005-11-06 00:29:59 +00:00
parent 64cfdedf09
commit 4eaebe4a31
6 changed files with 103 additions and 183 deletions

View file

@ -1582,7 +1582,7 @@ void GLimp_Init( void )
void GLimp_EndFrame (void)
{
// don't flip if drawing to front buffer
if ( stricmp( r_drawBuffer->string, "GL_FRONT" ) != 0 )
if ( Q_stricmp( r_drawBuffer->string, "GL_FRONT" ) != 0 )
{
qglXSwapBuffers(dpy, win);
}