remove html saving options (because the html writer is gone)

This commit is contained in:
Chris Danford
2004-07-11 02:24:32 +00:00
parent c301e1eb83
commit 059dfb6ae2
6 changed files with 2 additions and 33 deletions
@@ -18,12 +18,9 @@ static void SaveMachineStatsToFirstMemCard()
CString sDir = MEM_CARD_MOUNT_POINT[pn];
sDir += "MachineProfile/";
bool bOldVal = PREFSMAN->m_bWriteMachineStatsHtml;
PREFSMAN->m_bWriteMachineStatsHtml = true;
PROFILEMAN->GetMachineProfile()->SaveAllToDir( sDir, PREFSMAN->m_bSignProfileData );
PREFSMAN->m_bWriteMachineStatsHtml = bOldVal;
SCREENMAN->SystemMessage( ssprintf("Machine stats saved to P%d card.",pn+1) );
return;
}