platform/sdl: fix safegl
This commit is contained in:
parent
c7dd9d6437
commit
6041bb0a43
1 changed files with 7 additions and 2 deletions
|
@ -812,8 +812,13 @@ qboolean VID_CreateWindow( int width, int height, window_mode_t window_mode )
|
||||||
{
|
{
|
||||||
if( !glw_state.initialized )
|
if( !glw_state.initialized )
|
||||||
{
|
{
|
||||||
if( !GL_CreateContext( ))
|
while( !GL_CreateContext( ))
|
||||||
|
{
|
||||||
|
glw_state.safe++;
|
||||||
|
if(glw_state.safe > SAFE_DONTCARE)
|
||||||
return false;
|
return false;
|
||||||
|
GL_SetupAttributes(); // re-choose attributes
|
||||||
|
}
|
||||||
|
|
||||||
VID_StartupGamma();
|
VID_StartupGamma();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue