Restore VKDoom's loading bar color (this was accidentally overwritten)

This commit is contained in:
nashmuhandes 2025-08-08 23:15:23 +08:00
commit 499b8c7f96

View file

@ -112,7 +112,7 @@ bool FGenericStartScreen::DoProgress(int advance)
if (CurPos < MaxPos)
{
RgbQuad bcolor = { 177, 77, 16, 255 }; // [Nash June 2025] don't merge this color into VKDoom! // todo: make configurable
RgbQuad bcolor = { 2, 25, 87, 255 }; // todo: make configurable
int numnotches = 200 * 2;
notch_pos = ((CurPos + 1) * numnotches) / MaxPos;
if (notch_pos != NotchPos)