mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 15:21:51 +00:00
- 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:
parent
533ded8d1e
commit
fdf324cce5
1 changed files with 1 additions and 1 deletions
|
@ -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");
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue