From dab1bd6ef0d552d4b4ac5c246d24ed967b2c8e8a Mon Sep 17 00:00:00 2001 From: AJ Kelly Date: Tue, 27 Mar 2012 22:34:48 -0500 Subject: [PATCH] [ScreenEditMenu] Don't hardcode stopping the music on pressing the back button. This interferes with the StopMusicOnBack metric. --- Docs/Changelog_sm5.txt | 5 +++++ src/ScreenEditMenu.cpp | 2 -- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Docs/Changelog_sm5.txt b/Docs/Changelog_sm5.txt index adba076aae..69f151cf5f 100644 --- a/Docs/Changelog_sm5.txt +++ b/Docs/Changelog_sm5.txt @@ -9,6 +9,11 @@ ________________________________________________________________________________ StepMania 5.0 alpha 2 | 201203?? -------------------------------------------------------------------------------- +2012/03/27 +---------- +* [ScreenEditMenu] Don't hardcode stopping the music on pressing the back button. + This interferes with the StopMusicOnBack metric. [AJ] + 2012/03/20 ---------- * [Background] Fix 3D noteskins and dancing characters from clashing with each other. [shakesoda, AJ] diff --git a/src/ScreenEditMenu.cpp b/src/ScreenEditMenu.cpp index f11da45efd..7a1f1fa875 100644 --- a/src/ScreenEditMenu.cpp +++ b/src/ScreenEditMenu.cpp @@ -325,8 +325,6 @@ void ScreenEditMenu::MenuStart( const InputEventPlus &input ) void ScreenEditMenu::MenuBack( const InputEventPlus &input ) { Cancel( SM_GoToPrevScreen ); - - SOUND->StopMusic(); } void ScreenEditMenu::RefreshExplanationText()