- fixed error message for old OpenGL versions. There was still a mention of "with framebuffer support" which is core in 3.3.

This commit is contained in:
Christoph Oelckers 2018-10-31 10:50:45 +01:00
parent 533ded8d1e
commit fdf324cce5
1 changed files with 1 additions and 1 deletions

View File

@ -154,7 +154,7 @@ void gl_LoadExtensions()
// Don't even start if it's lower than 2.0 or no framebuffers are available (The framebuffer extension is needed for glGenerateMipmapsEXT!)
if (gl_version < 3.3f)
{
I_FatalError("Unsupported OpenGL version.\nAt least OpenGL 3.3 with framebuffer support is required to run " GAMENAME ".\nFor older versions of OpenGL please download the vintage build of " GAMENAME ".\n");
I_FatalError("Unsupported OpenGL version.\nAt least OpenGL 3.3 is required to run " GAMENAME ".\nFor older versions of OpenGL please download the vintage build of " GAMENAME ".\n");
}