Merge branch 'fix-replay-hudmessage' into 'master'

Fix HUD messages not being replay / party-aware

See merge request KartKrew/Kart!1859
This commit is contained in:
Oni 2024-01-23 16:23:55 +00:00
commit 4bda042d69

View file

@ -5816,7 +5816,7 @@ void K_TickMessages()
static void K_DrawMessageFeed(void) static void K_DrawMessageFeed(void)
{ {
int i; int i;
for (i = 0; i <= splitscreen; i++) for (i = 0; i <= r_splitscreen; i++)
{ {
messagestate_t state = messagestates[i]; messagestate_t state = messagestates[i];
@ -5844,7 +5844,7 @@ static void K_DrawMessageFeed(void)
UINT8 x = 160; UINT8 x = 160;
UINT8 y = 10; UINT8 y = 10;
SINT8 shift = 0; SINT8 shift = 0;
if (splitscreen >= 2) if (r_splitscreen >= 2)
{ {
text.font(Draw::Font::kThin); text.font(Draw::Font::kThin);
shift = -2; shift = -2;
@ -5858,7 +5858,7 @@ static void K_DrawMessageFeed(void)
if (i >= 2) if (i >= 2)
y += BASEVIDHEIGHT / 2; y += BASEVIDHEIGHT / 2;
} }
else if (splitscreen >= 1) else if (r_splitscreen >= 1)
{ {
y = 5; y = 5;