Remove colour filter assert from FontState::PopColour

This commit is contained in:
Jonathan G Rennison
2022-10-23 22:01:24 +01:00
parent e6e9a0c2f3
commit e1defedb2a

View File

@@ -57,7 +57,7 @@ struct FontState {
inline void PopColour()
{
if (colour_stack.empty()) return;
SetColour(colour_stack.top());
if ((this->cur_colour & TC_FORCED) == 0) this->cur_colour = colour_stack.top();
colour_stack.pop();
}