From f05222885493debfa6232d5c04be3cf830bbd3b4 Mon Sep 17 00:00:00 2001 From: James R Date: Mon, 26 Feb 2024 21:59:55 -0800 Subject: [PATCH] Let Profile menu music play in the Tutorial --- src/k_menufunc.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/k_menufunc.c b/src/k_menufunc.c index 3b531879a..894dcd969 100644 --- a/src/k_menufunc.c +++ b/src/k_menufunc.c @@ -436,8 +436,7 @@ void M_PlayMenuJam(void) const boolean trulystarted = M_GameTrulyStarted(); const boolean profilemode = ( - trulystarted - && optionsmenu.profilemenu + optionsmenu.profilemenu && !optionsmenu.resetprofilemenu ); @@ -449,7 +448,9 @@ void M_PlayMenuJam(void) return; } - if (!trulystarted) + // trulystarted == false in the Tutorial. + // But profile menu music should play during the Tutorial (Playing()). + if (!trulystarted && !Playing()) { if (M_GonerMusicPlayable() && NotCurrentlyPlaying("_GONER")) {