mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2025-02-07 16:31:21 +00:00
Correct test for GL_EXT_texture_env_add support
The test string is missing the initial "GL_" so it is always failing the test even when supported on newer hardware.
This commit is contained in:
parent
d85a544bf2
commit
6b514ee532
1 changed files with 1 additions and 1 deletions
|
@ -627,7 +627,7 @@ static void GLimp_InitExtensions( void )
|
||||||
|
|
||||||
// GL_EXT_texture_env_add
|
// GL_EXT_texture_env_add
|
||||||
glConfig.textureEnvAddAvailable = qfalse;
|
glConfig.textureEnvAddAvailable = qfalse;
|
||||||
if ( SDL_GL_ExtensionSupported( "EXT_texture_env_add" ) )
|
if ( SDL_GL_ExtensionSupported( "GL_EXT_texture_env_add" ) )
|
||||||
{
|
{
|
||||||
if ( r_ext_texture_env_add->integer )
|
if ( r_ext_texture_env_add->integer )
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue