Merge branch 'hud-bullshucks' into 'master'

v_draw.cpp Chain::fill: Ensure flags are passed to V_DrawFill

See merge request KartKrew/Kart!1717
This commit is contained in:
James R. 2023-12-23 19:07:05 +00:00
commit 87c3a009c5

View file

@ -56,7 +56,7 @@ void Chain::fill(UINT8 color) const
{
const auto _ = Clipper(*this);
V_DrawFill(x_, y_, width_, height_, color);
V_DrawFill(x_, y_, width_, height_, color|(flags_ & ~0xFF));
}
void Chain::string(const char* str, INT32 flags, Font font) const