From 839d5fdd09af2f57a59843acae37102569d30418 Mon Sep 17 00:00:00 2001 From: James R Date: Fri, 12 Feb 2021 01:16:51 -0800 Subject: [PATCH] Title card is always available, regardless of level title This had the really mean side effect of disabling lt_ticker, forcing anything drawn with V_SLIDEIN to never appear (basically the entire hud). --- src/g_game.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/g_game.c b/src/g_game.c index 0a494918f..6cc1f9aa2 100644 --- a/src/g_game.c +++ b/src/g_game.c @@ -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;