Revert "Attract: show music credit on return to title screen"

This reverts commit 7a5020470d.
This commit is contained in:
James R 2024-03-23 16:21:18 -07:00
parent 93b08c8512
commit e99951d0eb

View file

@ -1145,7 +1145,6 @@ static boolean g_deferredtitle = false;
//
void D_StartTitle(void)
{
bool fromAttract = (demo.attract == DEMO_ATTRACT_TITLE);
demo.attract = DEMO_ATTRACT_OFF;
Music_StopAll();
@ -1154,10 +1153,6 @@ void D_StartTitle(void)
F_StartTitleScreen();
M_ClearMenus(false);
g_deferredtitle = false;
if (fromAttract)
S_ShowMusicCredit(); // Show music credit when returning to the title screen
}
void D_SetDeferredStartTitle(boolean deferred)