diff --git a/stepmania/Themes/default/metrics.ini b/stepmania/Themes/default/metrics.ini index 4a962f25a7..09752e1473 100644 --- a/stepmania/Themes/default/metrics.ini +++ b/stepmania/Themes/default/metrics.ini @@ -13,7 +13,6 @@ ScreenWidth=640 ScreenHeight=480 OverlayScreens=ScreenSystemLayer HomeEditMode=0 -MaxStepsLoadedFromProfile=-1 MaxCourseEntriesBeforeShowVarious=6 [ModeSwitcher] diff --git a/stepmania/src/CommonMetrics.cpp b/stepmania/src/CommonMetrics.cpp index c1dfb23758..530b178da7 100644 --- a/stepmania/src/CommonMetrics.cpp +++ b/stepmania/src/CommonMetrics.cpp @@ -14,7 +14,6 @@ ThemeMetric1D PLAYER_COLOR ("Common",PLAYER_COLOR_NAME,NUM_PLAYE ThemeMetric JOIN_PAUSE_SECONDS ("Common","JoinPauseSeconds"); ThemeMetric WINDOW_TITLE ("Common","WindowTitle"); ThemeMetric HOME_EDIT_MODE ("Common","HomeEditMode"); -ThemeMetric MAX_STEPS_LOADED_FROM_PROFILE ("Common","MaxStepsLoadedFromProfile"); ThemeMetric MAX_COURSE_ENTRIES_BEFORE_VARIOUS ("Common","MaxCourseEntriesBeforeShowVarious"); ThemeMetric TICK_EARLY_SECONDS ("ScreenGameplay","TickEarlySeconds"); diff --git a/stepmania/src/CommonMetrics.h b/stepmania/src/CommonMetrics.h index d861ef2782..c12490db44 100644 --- a/stepmania/src/CommonMetrics.h +++ b/stepmania/src/CommonMetrics.h @@ -15,7 +15,6 @@ extern ThemeMetric1D PLAYER_COLOR; extern ThemeMetric JOIN_PAUSE_SECONDS; extern ThemeMetric WINDOW_TITLE; extern ThemeMetric HOME_EDIT_MODE; -extern ThemeMetric MAX_STEPS_LOADED_FROM_PROFILE; extern ThemeMetric MAX_COURSE_ENTRIES_BEFORE_VARIOUS; extern ThemeMetric TICK_EARLY_SECONDS; diff --git a/stepmania/src/ScreenEditMenu.cpp b/stepmania/src/ScreenEditMenu.cpp index a70576f31e..a2f35548a3 100644 --- a/stepmania/src/ScreenEditMenu.cpp +++ b/stepmania/src/ScreenEditMenu.cpp @@ -294,9 +294,6 @@ void ScreenEditMenu::RefreshExplanationText() void ScreenEditMenu::RefreshNumStepsLoadedFromProfile() { CString s = ssprintf( "edits used: %d", SONGMAN->GetNumStepsLoadedFromProfile() ); - int iMaxStepsLoadedFromProfile = MAX_STEPS_LOADED_FROM_PROFILE; - if( iMaxStepsLoadedFromProfile != -1 ) - s += ssprintf( " / %d", iMaxStepsLoadedFromProfile ); m_textNumStepsLoadedFromProfile.SetText( s ); }