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
@@ -213,18 +213,6 @@ MOVE( AutogenSteps, PREFSMAN->m_bAutogenSteps );
MOVE( AutogenGroupCourses, PREFSMAN->m_bAutogenGroupCourses );
MOVE( FastLoad, PREFSMAN->m_bFastLoad );
static void SaveStats( int &sel, bool ToSel, const CStringArray &choices )
{
if( ToSel )
{
sel = (PREFSMAN->m_bWriteMachineStatsHtml)? 1:0;
sel |= (PREFSMAN->m_bWritePlayerStatsHtml)? 2:0;
} else {
PREFSMAN->m_bWriteMachineStatsHtml = !!(sel&1);
PREFSMAN->m_bWritePlayerStatsHtml = !!(sel&2);
}
}
/* Background options */
MOVE( BackgroundMode, PREFSMAN->m_BackgroundMode );
MOVE( ShowDanger, PREFSMAN->m_bShowDanger );
@@ -432,7 +420,6 @@ static const ConfOption g_ConfOptions[] =
ConfOption( "Autogen\nSteps", AutogenSteps, "OFF","ON" ),
ConfOption( "Autogen\nGroup Courses", AutogenGroupCourses, "OFF","ON" ),
ConfOption( "Fast\nLoad", FastLoad, "OFF","ON" ),
ConfOption( "Save\nStats", SaveStats, "OFF", "MACHINE", "PROFILE", "BOTH" ),
/* Background options */
ConfOption( "Background\nMode", BackgroundMode, "OFF","ANIMATIONS","VISUALIZATIONS","RANDOM MOVIES" ),