Merge branch 'eid-servlist-voice' into 'master'

Fix voice indicator position in server list

Closes ring-racers#47

See merge request kart-krew-dev/ring-racers-internal!2823
This commit is contained in:
Eidolon 2025-09-13 17:40:07 -05:00
commit 3b4d33148b

View file

@ -4588,7 +4588,7 @@ void M_DrawMPServerBrowser(void)
// voice chat enabled
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;