Removed duplicate cullType check.

This commit is contained in:
Klaus Silveira 2025-02-26 03:14:36 -05:00 committed by Daniel Gibson
parent a8fc1cee8f
commit e63fbe66b8

View file

@ -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;
}
}