Don't fill in new Profiles with a hard-coded "NoName". Let ScreenSystemLayer fill in blank name from metrics.

This commit is contained in:
Chris Danford
2005-03-26 22:18:28 +00:00
parent ff1d0fd0f0
commit e6f37dbee8
3 changed files with 23 additions and 15 deletions
+1 -1
View File
@@ -156,7 +156,7 @@ CString Profile::GetDisplayName() const
else if( !m_sLastUsedHighScoreName.empty() )
return m_sLastUsedHighScoreName;
else
return "NoName";
return "";
}
static CString FormatCalories( float fCals )