diff --git a/neo/renderer/Material.cpp b/neo/renderer/Material.cpp index 984cb84a..577a0cdf 100644 --- a/neo/renderer/Material.cpp +++ b/neo/renderer/Material.cpp @@ -2086,10 +2086,9 @@ void idMaterial::ParseMaterial( idLexer &src ) { if ( cullType == CT_TWO_SIDED ) { for ( i = 0 ; i < numStages ; i++ ) { if ( pd->parseStages[i].lighting != SL_AMBIENT || pd->parseStages[i].texture.texgen != TG_EXPLICIT ) { - if ( cullType == CT_TWO_SIDED ) { - cullType = CT_FRONT_SIDED; - shouldCreateBackSides = true; - } + cullType = CT_FRONT_SIDED; + shouldCreateBackSides = true; + break; } }