GetAutogenDifficultySuffix is no longer needed

This commit is contained in:
Glenn Maynard
2004-05-24 23:31:56 +00:00
parent eafe6b56be
commit 50dc9d83cb
2 changed files with 1 additions and 9 deletions
+1 -8
View File
@@ -394,7 +394,7 @@ void Course::AutogenEndlessFromGroup( CString sGroupName, Difficulty diff )
m_sName = "All Songs";
// m_sBannerPath = ""; // XXX
} else {
m_sName = SONGMAN->ShortenGroupName( sGroupName ) + GetAutogenDifficultySuffix( diff );
m_sName = SONGMAN->ShortenGroupName( sGroupName );
m_sBannerPath = SONGMAN->GetGroupBannerPath( sGroupName );
}
@@ -432,13 +432,6 @@ void Course::AutogenNonstopFromGroup( CString sGroupName, Difficulty diff )
m_entries.pop_back();
}
CString Course::GetAutogenDifficultySuffix( Difficulty diff ) const
{
if ( diff == DIFFICULTY_MEDIUM )
return "";
return " " + DifficultyToThemedString( diff );
}
/*
* Difficult courses do the following:
*
-1
View File
@@ -136,7 +136,6 @@ public:
void ClearCache();
private:
CString GetAutogenDifficultySuffix( Difficulty diff ) const;
void GetMeterRange( int stage, int& iMeterLowOut, int& iMeterHighOut, CourseDifficulty cd ) const;
typedef pair<StepsType,CourseDifficulty> TrailParams;