From 21844e373e8ec8b527d0f45401c090075113a741 Mon Sep 17 00:00:00 2001 From: Jason Felds Date: Thu, 7 Jul 2011 01:15:06 -0400 Subject: [PATCH] Fix NoMines transformations in the editor. --- Docs/Changelog_sm5.txt | 4 ++++ src/ScreenEdit.cpp | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Docs/Changelog_sm5.txt b/Docs/Changelog_sm5.txt index 7fcf5e7f01..e956b42c3a 100644 --- a/Docs/Changelog_sm5.txt +++ b/Docs/Changelog_sm5.txt @@ -8,6 +8,10 @@ ________________________________________________________________________________ StepMania 5.0 ????????? | 20110??? -------------------------------------------------------------------------------- +2011/07/07 +---------- +* [ScreenEdit] Fix the NoMines transformation bug, issue 363. [Wolfman2000] + 2011/07/06 ---------- * [ScreenEdit] Fix the bug where hitting Enter during playing wouldn't take diff --git a/src/ScreenEdit.cpp b/src/ScreenEdit.cpp index 0d14921700..804c6d20f6 100644 --- a/src/ScreenEdit.cpp +++ b/src/ScreenEdit.cpp @@ -3896,7 +3896,7 @@ void ScreenEdit::HandleAlterMenuChoice(AlterMenuChoice c, const vector &iAn { DEFAULT_FAIL( tt ); case noholds: NoteDataUtil::RemoveHoldNotes( m_NoteDataEdit, iBeginRow, iEndRow ); break; - case nomines: NoteDataUtil::RemoveMines( m_NoteDataEdit, iBeginRow, iBeginRow ); break; + case nomines: NoteDataUtil::RemoveMines( m_NoteDataEdit, iBeginRow, iEndRow ); break; case little: NoteDataUtil::Little( m_NoteDataEdit, iBeginRow, iEndRow ); break; case wide: NoteDataUtil::Wide( m_NoteDataEdit, iBeginRow, iEndRow ); break; case big: NoteDataUtil::Big( m_NoteDataEdit, iBeginRow, iEndRow ); break;