add m_bLogSkips

This commit is contained in:
Glenn Maynard
2004-01-17 23:22:08 +00:00
parent 9c6661efd9
commit eec0bd8a0c
2 changed files with 4 additions and 0 deletions
+3
View File
@@ -255,6 +255,7 @@ PrefsManager::PrefsManager()
m_bShowLogOutput = false;
#endif
m_bTimestamping = false;
m_bLogSkips = false;
m_bLogCheckpoints = false;
for( int p=0; p<NUM_PLAYERS; p++ )
@@ -487,6 +488,7 @@ void PrefsManager::ReadGlobalPrefsFromDisk()
ini.GetValue( "Debug", "ForceLogFlush", m_bForceLogFlush );
ini.GetValue( "Debug", "ShowLogOutput", m_bShowLogOutput );
ini.GetValue( "Debug", "Timestamping", m_bTimestamping );
ini.GetValue( "Debug", "LogSkips", m_bLogSkips );
ini.GetValue( "Debug", "LogCheckpoints", m_bLogCheckpoints );
}
@@ -698,6 +700,7 @@ void PrefsManager::SaveGlobalPrefsToDisk() const
ini.SetValue( "Debug", "ForceLogFlush", m_bForceLogFlush );
ini.SetValue( "Debug", "ShowLogOutput", m_bShowLogOutput );
ini.SetValue( "Debug", "Timestamping", m_bTimestamping );
ini.SetValue( "Debug", "LogSkips", m_bLogSkips );
ini.SetValue( "Debug", "LogCheckpoints", m_bLogCheckpoints );
ini.WriteFile();
+1
View File
@@ -222,6 +222,7 @@ public:
bool m_bForceLogFlush;
bool m_bShowLogOutput;
bool m_bTimestamping;
bool m_bLogSkips;
bool m_bLogCheckpoints;
/* Game-specific prefs: */