mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-12-28 05:11:34 +00:00
Draw placeholder when no standings are available
This commit is contained in:
parent
03653ef85e
commit
c1a3f17896
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…
Reference in a new issue