From ebac57fb4f526021de31854b2f8a2f9f6a075960 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sun, 4 Apr 2021 09:25:41 +0200 Subject: [PATCH] - fixed music in Blood's menu This is only supposed to play for the fade-in of the background but needs to stop when the menu appears. Fixes #291 --- source/games/blood/src/credits.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/source/games/blood/src/credits.cpp b/source/games/blood/src/credits.cpp index 9d0b440254d..ea78f4b7b07 100644 --- a/source/games/blood/src/credits.cpp +++ b/source/games/blood/src/credits.cpp @@ -88,6 +88,7 @@ void playlogos() jobs[job++] = { Create(2518, DScreenJob::fadein) }; RunScreenJob(jobs, job, [](bool) { + Mus_Stop(); gameaction = ga_mainmenu; }, true, true); }