overhauling stats: move all stats from SongManager to ProfileManager

This commit is contained in:
Chris Danford
2003-12-07 07:09:13 +00:00
parent ed1b541a23
commit bf98d8248a
14 changed files with 778 additions and 769 deletions
+2 -2
View File
@@ -89,10 +89,10 @@ ScreenNameEntryTraditional::ScreenNameEntryTraditional( CString sClassName ) : S
if( i == 0 )
{
SongManager::CategoryData::HighScore hs;
ProfileManager::CategoryData::HighScore hs;
hs.iScore = 1234567;
StepsType nt = GAMESTATE->GetCurrentStyleDef()->m_StepsType;
SONGMAN->AddHighScore( nt, RANKING_A, (PlayerNumber)i, hs, a );
PROFILEMAN->AddHighScore( nt, RANKING_A, (PlayerNumber)i, hs, a );
}
}