player options -> options

This commit is contained in:
Glenn Maynard
2005-07-20 00:30:19 +00:00
parent ff4188032d
commit 913b9c52a2
2 changed files with 6 additions and 7 deletions
+5 -6
View File
@@ -55,8 +55,7 @@ AutoScreenMessage( SM_UpdateTextInfo )
AutoScreenMessage( SM_BackFromMainMenu ) AutoScreenMessage( SM_BackFromMainMenu )
AutoScreenMessage( SM_BackFromAreaMenu ) AutoScreenMessage( SM_BackFromAreaMenu )
AutoScreenMessage( SM_BackFromStepsInformation ) AutoScreenMessage( SM_BackFromStepsInformation )
AutoScreenMessage( SM_BackFromPlayerOptions ) AutoScreenMessage( SM_BackFromOptions )
AutoScreenMessage( SM_BackFromEditOptions )
AutoScreenMessage( SM_BackFromSongInformation ) AutoScreenMessage( SM_BackFromSongInformation )
AutoScreenMessage( SM_BackFromBGChange ) AutoScreenMessage( SM_BackFromBGChange )
AutoScreenMessage( SM_BackFromInsertAttack ) AutoScreenMessage( SM_BackFromInsertAttack )
@@ -384,7 +383,7 @@ static MenuDef g_MainMenu(
MenuRowDef( ScreenEdit::save, "Save", true, EDIT_MODE_HOME, 0, NULL ), MenuRowDef( ScreenEdit::save, "Save", true, EDIT_MODE_HOME, 0, NULL ),
MenuRowDef( ScreenEdit::revert_to_last_save, "Revert to Last Save", true, EDIT_MODE_HOME, 0, NULL ), 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::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::options, "Editor Options", true, EDIT_MODE_PRACTICE, 0, NULL ),
MenuRowDef( ScreenEdit::edit_song_info, "Edit Song Info", true, EDIT_MODE_FULL, 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_bpm, "Edit BPM Change", true, EDIT_MODE_FULL, 0, NULL ),
MenuRowDef( ScreenEdit::edit_stop, "Edit Stop", true, EDIT_MODE_FULL, 0, NULL ), MenuRowDef( ScreenEdit::edit_stop, "Edit Stop", true, EDIT_MODE_FULL, 0, NULL ),
@@ -1768,7 +1767,7 @@ void ScreenEdit::HandleScreenMessage( const ScreenMessage SM )
ASSERT( m_pAttacksFromCourse ); ASSERT( m_pAttacksFromCourse );
} }
} }
else if( SM == SM_BackFromPlayerOptions ) else if( SM == SM_BackFromOptions )
{ {
GAMESTATE->StoreSelectedOptions(); // so that the options stick when we reset Course attacks GAMESTATE->StoreSelectedOptions(); // so that the options stick when we reset Course attacks
@@ -2075,8 +2074,8 @@ void ScreenEdit::HandleMainMenuChoice( MainMenuChoice c, const vector<int> &iAns
"Do you want to revert from disk?\n\nThis will destroy all unsaved changes.", "Do you want to revert from disk?\n\nThis will destroy all unsaved changes.",
PROMPT_YES_NO, ANSWER_NO ); PROMPT_YES_NO, ANSWER_NO );
break; break;
case player_options: case options:
SCREENMAN->PushScreen( m_pScreenPlayerOptions, false, SM_BackFromPlayerOptions ); SCREENMAN->PushScreen( m_pScreenPlayerOptions, false, SM_BackFromOptions );
break; break;
case edit_song_info: case edit_song_info:
{ {
+1 -1
View File
@@ -240,7 +240,7 @@ public:
save, save,
revert_to_last_save, revert_to_last_save,
revert_from_disk, revert_from_disk,
player_options, options,
edit_song_info, edit_song_info,
edit_bpm, edit_bpm,
edit_stop, edit_stop,