- fixed issue with parsing useowncoloradd UDMF flags

# Conflicts:
#	src/p_udmf.cpp
This commit is contained in:
alexey.lysiuk 2020-10-31 19:14:22 +02:00 committed by drfrag
parent 9458861456
commit a9bf361030

View file

@ -1418,12 +1418,15 @@ public:
case NAME_useowncoloradd_top:
sd->textures[side_t::top].flags |= side_t::part::UseOwnAdditiveColor * CheckBool(key);
break;
case NAME_useowncoloradd_mid:
sd->textures[side_t::mid].flags |= side_t::part::UseOwnAdditiveColor * CheckBool(key);
break;
case NAME_useowncoloradd_bottom:
sd->textures[side_t::bottom].flags |= side_t::part::UseOwnAdditiveColor * CheckBool(key);
break;
default:
break;