Fix voice indicator position in server list

Fixes https://gitlab.com/kart-krew-dev/ring-racers/-/issues/47
This commit is contained in:
Eidolon 2025-09-13 13:52:20 -05:00
parent 68d83f6870
commit d702a61845

View file

@ -4588,7 +4588,7 @@ void M_DrawMPServerBrowser(void)
// voice chat enabled // voice chat enabled
if (serverlist[i].info.kartvars & SV_VOICEENABLED) if (serverlist[i].info.kartvars & SV_VOICEENABLED)
{ {
V_DrawFixedPatch((startx - 3) * FRACUNIT, (starty + 2) * FRACUNIT, FRACUNIT, 0, voicepat, NULL); V_DrawFixedPatch((startx - 3) * FRACUNIT, (starty + ypos + 2) * FRACUNIT, FRACUNIT, 0, voicepat, NULL);
} }
} }
ypos += SERVERSPACE; ypos += SERVERSPACE;