mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Don't show "position" in GT_TUTORIAL tab rankings, as everybody's in 1st place all the time
This commit is contained in:
parent
9675dcfa2d
commit
5da7e1612e
1 changed files with 4 additions and 1 deletions
|
|
@ -735,7 +735,10 @@ void Y_PlayerStandingsDrawer(y_data_t *standings, INT32 xoffset)
|
||||||
|
|
||||||
V_DrawMappedPatch(x, y, 0, resbar, NULL);
|
V_DrawMappedPatch(x, y, 0, resbar, NULL);
|
||||||
|
|
||||||
V_DrawRightAlignedThinString(x+13, y-2, 0, va("%d", standings->pos[i]));
|
if (gametype != GT_TUTORIAL)
|
||||||
|
{
|
||||||
|
V_DrawRightAlignedThinString(x+13, y-2, 0, va("%d", standings->pos[i]));
|
||||||
|
}
|
||||||
|
|
||||||
//if (players[pnum].skincolor != SKINCOLOR_NONE)
|
//if (players[pnum].skincolor != SKINCOLOR_NONE)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue