name cleanup: ProfileStatsHtml -> PlayerStatsHtml

This commit is contained in:
Chris Danford
2004-05-28 04:17:56 +00:00
parent 5a2b6aa218
commit c711c8aa33
4 changed files with 9 additions and 7 deletions
+2 -2
View File
@@ -219,10 +219,10 @@ static void SaveStats( int &sel, bool ToSel, const CStringArray &choices )
if( ToSel )
{
sel = (PREFSMAN->m_bWriteMachineStatsHtml)? 1:0;
sel |= (PREFSMAN->m_bWriteProfileStatsHtml)? 2:0;
sel |= (PREFSMAN->m_bWritePlayerStatsHtml)? 2:0;
} else {
PREFSMAN->m_bWriteMachineStatsHtml = !!(sel&1);
PREFSMAN->m_bWriteProfileStatsHtml = !!(sel&2);
PREFSMAN->m_bWritePlayerStatsHtml = !!(sel&2);
}
}