ping num in neo tab ranking (will need additions later too)

This commit is contained in:
minenice55 2025-10-15 14:47:06 -04:00
parent 65dec93f7c
commit da4add120f

View file

@ -2345,7 +2345,10 @@ INT32 K_DrawNeoTabRankings(INT32 x, INT32 y, playersort_t *tab, INT32 scorelines
hightlightcolor = skincolors[players[tab[i].num].mo->color].chatcolor; hightlightcolor = skincolors[players[tab[i].num].mo->color].chatcolor;
} }
V_DrawScaledPatch(x-5, y+1, 0, kp_facenum[pos]); if (pos < 0 || pos > 16)
V_DrawPingNum(x+2, y+1, 0, pos, NULL);
else
V_DrawScaledPatch(x-5, y+1, 0, kp_facenum[pos]);
x2 = netgame ? x + (BASEVIDWIDTH/20) : x; x2 = netgame ? x + (BASEVIDWIDTH/20) : x;
y2 = y; y2 = y;