Skip to content

Commit

Permalink
Client: OpenGL 2.0 or later is now required
Browse files Browse the repository at this point in the history
This can still be bypassed with -noglcheck, though.
  • Loading branch information
skyjake committed Jul 26, 2013
1 parent 5ffb594 commit fc08966
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions doomsday/client/src/gl/sys_opengl.cpp
Expand Up @@ -477,19 +477,19 @@ boolean Sys_GLInitialize(void)
Con_Message("Sys_GLInitialize: Failed to determine OpenGL version.");
Con_Message(" OpenGL version: %s", glGetString(GL_VERSION));
}
else if(version < 1.4)
else if(version < 2.0)
{
if(!CommandLine_Exists("-noglcheck"))
{
Sys_CriticalMessagef("OpenGL implementation is too old!\n"
" Driver version: %s\n"
" The minimum supported version is 1.4",
" The minimum supported version is 2.0",
glGetString(GL_VERSION));
return false;
}
else
{
Con_Message("Warning: Sys_GLInitialize: OpenGL implementation may be too old (1.4+ required).");
Con_Message("Warning: Sys_GLInitialize: OpenGL implementation may be too old (2.0+ required).");
Con_Message(" OpenGL version: %s", glGetString(GL_VERSION));
}
}
Expand Down

0 comments on commit fc08966

Please sign in to comment.