mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Draw placeholder when no standings are available
This commit is contained in:
parent
4d3542d421
commit
9a083665bd
1 changed files with 9 additions and 0 deletions
|
|
@ -5307,6 +5307,15 @@ static void DrawReplayHutReplayInfo(void)
|
||||||
va("Race (%s speed)", kartspeed_cons_t[demolist[dir_on[menudepthleft]].kartspeed & ~DF_ENCORE].strvalue) :
|
va("Race (%s speed)", kartspeed_cons_t[demolist[dir_on[menudepthleft]].kartspeed & ~DF_ENCORE].strvalue) :
|
||||||
"Battle Mode");
|
"Battle Mode");
|
||||||
|
|
||||||
|
if (!demolist[dir_on[menudepthleft]].standings[0].ranking)
|
||||||
|
{
|
||||||
|
// No standings were loaded!
|
||||||
|
V_DrawString(x, y+39, V_ALLOWLOWERCASE|V_TRANSLUCENT, "No standings available.");
|
||||||
|
|
||||||
|
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
V_DrawThinString(x, y+29, highlightflags, "WINNER");
|
V_DrawThinString(x, y+29, highlightflags, "WINNER");
|
||||||
V_DrawString(x+38, y+30, V_ALLOWLOWERCASE, demolist[dir_on[menudepthleft]].standings[0].name);
|
V_DrawString(x+38, y+30, V_ALLOWLOWERCASE, demolist[dir_on[menudepthleft]].standings[0].name);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue