mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Statistics "Characters & Engine Classes" page: Show Wins/Rounds, not just Wins
This commit is contained in:
parent
f1c9f54727
commit
825eda9861
1 changed files with 2 additions and 2 deletions
|
|
@ -8310,7 +8310,7 @@ static void M_DrawStatsChars(void)
|
||||||
i = -1;
|
i = -1;
|
||||||
|
|
||||||
V_DrawThinString(20, y - 10, highlightflags, "CHARACTER");
|
V_DrawThinString(20, y - 10, highlightflags, "CHARACTER");
|
||||||
V_DrawRightAlignedThinString(BASEVIDWIDTH/2 + 34, y - 10, highlightflags, "WINS");
|
V_DrawRightAlignedThinString(BASEVIDWIDTH/2 + 34, y - 10, highlightflags, "WINS/ROUNDS");
|
||||||
|
|
||||||
while ((skin = statisticsmenu.maplist[++i]) < numskins)
|
while ((skin = statisticsmenu.maplist[++i]) < numskins)
|
||||||
{
|
{
|
||||||
|
|
@ -8328,7 +8328,7 @@ static void M_DrawStatsChars(void)
|
||||||
|
|
||||||
V_DrawThinString(24+32+2, y+3, 0, skins[skin].realname);
|
V_DrawThinString(24+32+2, y+3, 0, skins[skin].realname);
|
||||||
|
|
||||||
V_DrawRightAlignedThinString(BASEVIDWIDTH/2 + 30, y+3, 0, va("%d", skins[skin].records.wins));
|
V_DrawRightAlignedThinString(BASEVIDWIDTH/2 + 30, y+3, 0, va("%d/%d", skins[skin].records.wins, skins[skin].records.rounds));
|
||||||
|
|
||||||
y += STATSSTEP;
|
y += STATSSTEP;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue