Draw placeholder when no standings are available

This commit is contained in:
fickleheart 2019-04-01 20:30:24 -05:00
parent 03653ef85e
commit c1a3f17896
1 changed files with 9 additions and 0 deletions

View File

@ -5307,6 +5307,15 @@ static void DrawReplayHutReplayInfo(void)
va("Race (%s speed)", kartspeed_cons_t[demolist[dir_on[menudepthleft]].kartspeed & ~DF_ENCORE].strvalue) :
"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_DrawString(x+38, y+30, V_ALLOWLOWERCASE, demolist[dir_on[menudepthleft]].standings[0].name);