Fix assertion failure when colour stack used with TC_FORCED

This commit is contained in:
Jonathan G Rennison
2020-10-25 17:26:53 +00:00
parent 66630ef8df
commit 890e0c1198

View File

@@ -64,7 +64,7 @@ struct FontState {
*/
inline void PushColour()
{
colour_stack.push(this->cur_colour);
colour_stack.push(this->cur_colour & ~TC_FORCED);
}
/**