mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-06-25 04:05:05 +00:00
Fix unintentional disabling of S3TC and mipmaps
This was SVN commit r5321.
This commit is contained in:
@@ -693,9 +693,9 @@ static void InitRenderer()
|
||||
{
|
||||
TIMER("InitRenderer");
|
||||
|
||||
if(!g_NoGLS3TC)
|
||||
if(g_NoGLS3TC)
|
||||
ogl_tex_override(OGL_TEX_S3TC, OGL_TEX_DISABLE);
|
||||
if(!g_NoGLAutoMipmap)
|
||||
if(g_NoGLAutoMipmap)
|
||||
ogl_tex_override(OGL_TEX_AUTO_MIPMAP_GEN, OGL_TEX_DISABLE);
|
||||
|
||||
// create renderer
|
||||
|
||||
Reference in New Issue
Block a user