From 7a19b153a3c5c87eeffcf8ece028ef8b02f2a520 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 20 Jul 2005 00:07:33 +0000 Subject: [PATCH] remove song_options --- stepmania/src/ScreenEdit.cpp | 4 ---- stepmania/src/ScreenEdit.h | 1 - 2 files changed, 5 deletions(-) diff --git a/stepmania/src/ScreenEdit.cpp b/stepmania/src/ScreenEdit.cpp index a88283e1f1..1c0936e8ea 100644 --- a/stepmania/src/ScreenEdit.cpp +++ b/stepmania/src/ScreenEdit.cpp @@ -386,7 +386,6 @@ static MenuDef g_MainMenu( MenuRowDef( ScreenEdit::revert_to_last_save, "Revert to Last Save", true, EDIT_MODE_HOME, 0, NULL ), MenuRowDef( ScreenEdit::revert_from_disk, "Revert from Disk", true, EDIT_MODE_FULL, 0, NULL ), MenuRowDef( ScreenEdit::player_options, "Player Options", true, EDIT_MODE_PRACTICE, 0, NULL ), - MenuRowDef( ScreenEdit::song_options, "Song Options", true, EDIT_MODE_PRACTICE, 0, NULL ), MenuRowDef( ScreenEdit::edit_song_info, "Edit Song Info", true, EDIT_MODE_FULL, 0, NULL ), MenuRowDef( ScreenEdit::edit_bpm, "Edit BPM Change", true, EDIT_MODE_FULL, 0, NULL ), MenuRowDef( ScreenEdit::edit_stop, "Edit Stop", true, EDIT_MODE_FULL, 0, NULL ), @@ -2093,9 +2092,6 @@ void ScreenEdit::HandleMainMenuChoice( MainMenuChoice c, const vector &iAns case player_options: SCREENMAN->PushScreen( m_pScreenPlayerOptions, false, SM_BackFromPlayerOptions ); break; - case song_options: - SCREENMAN->AddNewScreenToTop( "ScreenSongOptionsEdit", SM_BackFromPlayerOptions ); - break; case edit_song_info: { Song* pSong = GAMESTATE->m_pCurSong; diff --git a/stepmania/src/ScreenEdit.h b/stepmania/src/ScreenEdit.h index 95c1210258..f43b70d1f2 100644 --- a/stepmania/src/ScreenEdit.h +++ b/stepmania/src/ScreenEdit.h @@ -241,7 +241,6 @@ public: revert_to_last_save, revert_from_disk, player_options, - song_options, edit_song_info, edit_bpm, edit_stop,