From af137dbb35286b41c5692f8640f9f60a97f64eae Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Wed, 19 May 2021 16:42:30 +0200 Subject: [PATCH] - reset the 'playedtitlemusic' flag in D_StartTitle. When returning to the title loop the music should play once again. --- src/d_main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/d_main.cpp b/src/d_main.cpp index fa2cc6734..6d5bf3063 100644 --- a/src/d_main.cpp +++ b/src/d_main.cpp @@ -1608,6 +1608,7 @@ void D_DoAdvanceDemo (void) void D_StartTitle (void) { + playedtitlemusic = false; gameaction = ga_nothing; demosequence = -1; D_AdvanceDemo ();