From 8bf628c4f976b617d840a64a6e7c2edb5f1d7719 Mon Sep 17 00:00:00 2001 From: Holger Schemel Date: Mon, 7 Jan 2019 13:28:03 +0100 Subject: [PATCH 1/1] fixed bug with not fading menu music on title screen when changing level set --- src/screens.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/screens.c b/src/screens.c index 2067ee28..92c752af 100644 --- a/src/screens.c +++ b/src/screens.c @@ -1745,10 +1745,10 @@ void HandleTitleScreen(int mx, int my, int dx, int dy, int button) "No title screen for this level set."); return; } - - FadeMenuSoundsAndMusic(); } + FadeMenuSoundsAndMusic(); + FadeOut(REDRAW_ALL); // title screens may have different window size -- 2.34.1