add IgnoredMessageWindows

This commit is contained in:
Glenn Maynard
2003-07-07 03:51:20 +00:00
parent 8b73204ea4
commit 03a7df4f78
2 changed files with 6 additions and 1 deletions
+4 -1
View File
@@ -125,7 +125,8 @@ PrefsManager::PrefsManager()
m_bSoundPreloadAll = false;
m_bAllowUnacceleratedRenderer = false;
m_sIgnoredMessageWindows = "";
ReadGlobalPrefsFromDisk( true );
}
@@ -195,6 +196,7 @@ void PrefsManager::ReadGlobalPrefsFromDisk( bool bSwitchToLastPlayedGame )
ini.GetValueF( "Options", "MarathonVerSeconds", m_fMarathonVerSongSeconds );
ini.GetValueI( "Options", "ShowSongOptions", (int&)m_ShowSongOptions );
ini.GetValueB( "Options", "AllowUnacceleratedRenderer", m_bAllowUnacceleratedRenderer );
ini.GetValue ( "Options", "IgnoredMessageWindows", m_sIgnoredMessageWindows );
ini.GetValueB( "Options", "SoloSingle", m_bSoloSingle );
ini.GetValueB( "Options", "DancePointsForOni", m_bDancePointsForOni );
ini.GetValueB( "Options", "ShowLyrics", m_bShowLyrics );
@@ -288,6 +290,7 @@ void PrefsManager::SaveGlobalPrefsToDisk()
ini.SetValueF( "Options", "MarathonVerSeconds", m_fMarathonVerSongSeconds );
ini.SetValueI( "Options", "ShowSongOptions", m_ShowSongOptions );
ini.SetValueB( "Options", "AllowUnacceleratedRenderer", m_bAllowUnacceleratedRenderer );
ini.SetValue ( "Options", "IgnoredMessageWindows", m_sIgnoredMessageWindows );
ini.SetValueB( "Options", "SoloSingle", m_bSoloSingle );
ini.SetValueB( "Options", "DancePointsForOni", m_bDancePointsForOni );
ini.SetValueB( "Options", "ShowLyrics", m_bShowLyrics );