mirror of
https://github.com/ioquake/ioq3.git
synced 2025-05-30 00:20:59 +00:00
* Port to MinGW
This commit is contained in:
parent
50eb77ed1a
commit
fcaf343d7f
28 changed files with 347 additions and 64 deletions
|
@ -3220,8 +3220,12 @@ static qboolean GlideIsValid( void )
|
|||
return qfalse;
|
||||
}
|
||||
|
||||
#ifdef _MSC_VER
|
||||
# pragma warning (disable : 4113 4133 4047 )
|
||||
# define GPA( a ) GetProcAddress( glw_state.hinstOpenGL, a )
|
||||
#else
|
||||
# define GPA( a ) (void *)GetProcAddress( glw_state.hinstOpenGL, a )
|
||||
#endif
|
||||
|
||||
/*
|
||||
** QGL_Init
|
||||
|
@ -4368,7 +4372,9 @@ void QGL_EnableLogging( qboolean enable )
|
|||
}
|
||||
}
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#pragma warning (default : 4113 4133 4047 )
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue