"LastScores"->"RecentScores"

add recent scores to HTML
This commit is contained in:
Chris Danford
2004-05-08 10:12:10 +00:00
parent 6886b09e45
commit e9f576d262
10 changed files with 163 additions and 90 deletions
+12
View File
@@ -209,6 +209,18 @@ void StepsID::LoadFromNode( const XNode* pNode )
}
}
CString StepsID::ToString() const
{
CString s = GameManager::NotesTypeToString(st);
s += " " + DifficultyToString(dc);
if( dc == DIFFICULTY_EDIT )
{
s += " " + sDescription;
s += ssprintf(" %u", uHash );
}
return s;
}
bool StepsID::IsValid() const
{
return st != STEPS_TYPE_INVALID && dc != DIFFICULTY_INVALID;