From 92a4a41d20dc71db5e67d7e34aa6e3799beaf9f2 Mon Sep 17 00:00:00 2001 From: EliteMasterEric Date: Tue, 17 Oct 2023 17:59:01 -0400 Subject: [PATCH] Fix an issue where chart editor theme continues when exiting --- source/funkin/ui/debug/charting/ChartEditorState.hx | 1 + 1 file changed, 1 insertion(+) diff --git a/source/funkin/ui/debug/charting/ChartEditorState.hx b/source/funkin/ui/debug/charting/ChartEditorState.hx index 4e561d040..c28c1c8c7 100644 --- a/source/funkin/ui/debug/charting/ChartEditorState.hx +++ b/source/funkin/ui/debug/charting/ChartEditorState.hx @@ -3129,6 +3129,7 @@ class ChartEditorState extends HaxeUIState function quitChartEditor():Void { autoSave(); + stopWelcomeMusic(); FlxG.switchState(new MainMenuState()); }