Merge branch 'level-title-disables-hud' into 'master'

Don't disable the hud if there isn't a level title

See merge request KartKrew/Kart!376
This commit is contained in:
Sal 2021-02-12 11:32:22 -05:00
commit 03eb86eb2b

View file

@ -1309,9 +1309,11 @@ void G_PreLevelTitleCard(void)
//
boolean G_IsTitleCardAvailable(void)
{
#if 0
// The current level has no name.
if (!mapheaderinfo[gamemap-1]->lvlttl[0])
return false;
#endif
// The title card is available.
return true;