remove unused MaxStepsLoadedFromProfile

This commit is contained in:
Chris Danford
2005-03-20 20:51:30 +00:00
parent 4eb7e27746
commit fe5b7e214b
4 changed files with 0 additions and 6 deletions
-1
View File
@@ -13,7 +13,6 @@ ScreenWidth=640
ScreenHeight=480
OverlayScreens=ScreenSystemLayer
HomeEditMode=0
MaxStepsLoadedFromProfile=-1
MaxCourseEntriesBeforeShowVarious=6
[ModeSwitcher]
-1
View File
@@ -14,7 +14,6 @@ ThemeMetric1D<RageColor> PLAYER_COLOR ("Common",PLAYER_COLOR_NAME,NUM_PLAYE
ThemeMetric<float> JOIN_PAUSE_SECONDS ("Common","JoinPauseSeconds");
ThemeMetric<CString> WINDOW_TITLE ("Common","WindowTitle");
ThemeMetric<bool> HOME_EDIT_MODE ("Common","HomeEditMode");
ThemeMetric<int> MAX_STEPS_LOADED_FROM_PROFILE ("Common","MaxStepsLoadedFromProfile");
ThemeMetric<int> MAX_COURSE_ENTRIES_BEFORE_VARIOUS ("Common","MaxCourseEntriesBeforeShowVarious");
ThemeMetric<float> TICK_EARLY_SECONDS ("ScreenGameplay","TickEarlySeconds");
-1
View File
@@ -15,7 +15,6 @@ extern ThemeMetric1D<RageColor> PLAYER_COLOR;
extern ThemeMetric<float> JOIN_PAUSE_SECONDS;
extern ThemeMetric<CString> WINDOW_TITLE;
extern ThemeMetric<bool> HOME_EDIT_MODE;
extern ThemeMetric<int> MAX_STEPS_LOADED_FROM_PROFILE;
extern ThemeMetric<int> MAX_COURSE_ENTRIES_BEFORE_VARIOUS;
extern ThemeMetric<float> TICK_EARLY_SECONDS;
-3
View File
@@ -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 );
}