diff --git a/stepmania/src/EditMenu.cpp b/stepmania/src/EditMenu.cpp index b1a3a21d89..dbfad4ab9f 100644 --- a/stepmania/src/EditMenu.cpp +++ b/stepmania/src/EditMenu.cpp @@ -335,6 +335,7 @@ void EditMenu::UpdateArrows() m_sprArrows[1].EnableAnimation( CanGoRight() ); } +static LocalizedString BLANK ( "EditMenu", "Blank" ); void EditMenu::OnRowValueChanged( EditMenuRow row ) { UpdateArrows(); @@ -499,7 +500,7 @@ void EditMenu::OnRowValueChanged( EditMenuRow row ) CString s; Steps *pSourceSteps = GetSelectedSourceSteps(); if( GetSelectedSourceDifficulty() == DIFFICULTY_INVALID ) - s = "Blank"; + s = BLANK; else if( pSourceSteps && GetSelectedSourceDifficulty() == DIFFICULTY_EDIT ) s = pSourceSteps->GetDescription() + " (" + DifficultyToLocalizedString(DIFFICULTY_EDIT) + ")"; else diff --git a/stepmania/src/ScreenEditMenu.cpp b/stepmania/src/ScreenEditMenu.cpp index 7374a9e4c5..769c9a9ec6 100644 --- a/stepmania/src/ScreenEditMenu.cpp +++ b/stepmania/src/ScreenEditMenu.cpp @@ -171,9 +171,10 @@ static void DeleteCurrentSteps() GAMESTATE->m_pCurSteps[0].Set( NULL ); } -static LocalizedString MISSING_MUSIC_FILE ( "ScreenEditMenu", "This song is missing a music file and cannot be edited." ); -static LocalizedString STEPS_WILL_BE_LOST ( "ScreenEditMenu", "These steps will be lost permanently." ); -static LocalizedString CONTINUE_WITH_DELETE ( "ScreenEditMenu", "Continue with delete?" ); +static LocalizedString MISSING_MUSIC_FILE ( "ScreenEditMenu", "This song is missing a music file and cannot be edited." ); +static LocalizedString STEPS_WILL_BE_LOST ( "ScreenEditMenu", "These steps will be lost permanently." ); +static LocalizedString CONTINUE_WITH_DELETE ( "ScreenEditMenu", "Continue with delete?" ); +static LocalizedString BLANK ( "ScreenEditMenu", "Blank" ); static LocalizedString ENTER_EDIT_DESCRIPTION ( "ScreenEditMenu", "Enter a description for this edit."); void ScreenEditMenu::MenuStart( PlayerNumber pn ) { @@ -253,7 +254,7 @@ void ScreenEditMenu::MenuStart( PlayerNumber pn ) { pSteps->CreateBlank( st ); pSteps->SetMeter( 1 ); - sEditName = "Blank"; + sEditName = BLANK; } pSteps->SetDifficulty( dc ); // override difficulty with the user's choice diff --git a/stepmania/src/ScreenOptionsManageProfiles.cpp b/stepmania/src/ScreenOptionsManageProfiles.cpp index c596039935..dd264a2ceb 100644 --- a/stepmania/src/ScreenOptionsManageProfiles.cpp +++ b/stepmania/src/ScreenOptionsManageProfiles.cpp @@ -103,7 +103,7 @@ void ScreenOptionsManageProfiles::BeginScreen() { OptionRowHandler *pHand = OptionRowHandlerUtil::Make( ParseCommands("gamecommand;screen,ScreenOptionsEditProfile;name,Create New") ); pHand->m_Def.m_layoutType = LAYOUT_SHOW_ALL_IN_ROW; - pHand->m_Def.m_bAllowThemeTitle = false; + pHand->m_Def.m_bAllowThemeTitle = true; pHand->m_Def.m_bAllowThemeItems = false; OptionRowHandlers.push_back( pHand );