GetAutogenDifficultySuffix is no longer needed
This commit is contained in:
@@ -394,7 +394,7 @@ void Course::AutogenEndlessFromGroup( CString sGroupName, Difficulty diff )
|
|||||||
m_sName = "All Songs";
|
m_sName = "All Songs";
|
||||||
// m_sBannerPath = ""; // XXX
|
// m_sBannerPath = ""; // XXX
|
||||||
} else {
|
} else {
|
||||||
m_sName = SONGMAN->ShortenGroupName( sGroupName ) + GetAutogenDifficultySuffix( diff );
|
m_sName = SONGMAN->ShortenGroupName( sGroupName );
|
||||||
m_sBannerPath = SONGMAN->GetGroupBannerPath( sGroupName );
|
m_sBannerPath = SONGMAN->GetGroupBannerPath( sGroupName );
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -432,13 +432,6 @@ void Course::AutogenNonstopFromGroup( CString sGroupName, Difficulty diff )
|
|||||||
m_entries.pop_back();
|
m_entries.pop_back();
|
||||||
}
|
}
|
||||||
|
|
||||||
CString Course::GetAutogenDifficultySuffix( Difficulty diff ) const
|
|
||||||
{
|
|
||||||
if ( diff == DIFFICULTY_MEDIUM )
|
|
||||||
return "";
|
|
||||||
return " " + DifficultyToThemedString( diff );
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Difficult courses do the following:
|
* Difficult courses do the following:
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -136,7 +136,6 @@ public:
|
|||||||
void ClearCache();
|
void ClearCache();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
CString GetAutogenDifficultySuffix( Difficulty diff ) const;
|
|
||||||
void GetMeterRange( int stage, int& iMeterLowOut, int& iMeterHighOut, CourseDifficulty cd ) const;
|
void GetMeterRange( int stage, int& iMeterLowOut, int& iMeterHighOut, CourseDifficulty cd ) const;
|
||||||
|
|
||||||
typedef pair<StepsType,CourseDifficulty> TrailParams;
|
typedef pair<StepsType,CourseDifficulty> TrailParams;
|
||||||
|
|||||||
Reference in New Issue
Block a user