add m_bTimestamping

This commit is contained in:
Glenn Maynard
2003-03-07 04:47:04 +00:00
parent 0c400d3567
commit a2a774a3c2
2 changed files with 4 additions and 0 deletions
+3
View File
@@ -87,6 +87,7 @@ PrefsManager::PrefsManager()
m_bShowSongOptions = true;
m_DefaultFailType = SongOptions::FAIL_ARCADE;
m_bDancePointsForOni = false; //DDR-Extreme style dance points instead of max2 percent
m_bTimestamping = false;
/* DDR Extreme-style extra stage support.
* Default off so people used to the current behavior (or those with extra
@@ -180,6 +181,7 @@ void PrefsManager::ReadGlobalPrefsFromDisk( bool bSwitchToLastPlayedGame )
ini.GetValueB( "Options", "AllowSoftwareRenderer", m_bAllowSoftwareRenderer );
ini.GetValueB( "Options", "SoloSingle", m_bSoloSingle );
ini.GetValueB( "Options", "DancePointsForOni", m_bDancePointsForOni );
ini.GetValueB( "Options", "Timestamping", m_bTimestamping );
m_asAdditionalSongFolders.clear();
@@ -256,6 +258,7 @@ void PrefsManager::SaveGlobalPrefsToDisk()
ini.SetValueB( "Options", "AllowSoftwareRenderer", m_bAllowSoftwareRenderer );
ini.SetValueB( "Options", "SoloSingle", m_bSoloSingle );
ini.SetValueB( "Options", "DancePointsForOni", m_bDancePointsForOni );
ini.SetValueB( "Options", "Timestamping", m_bTimestamping );
/* Only write these if they aren't the default. This ensures that we can change
+1
View File
@@ -72,6 +72,7 @@ public:
bool m_bSoloSingle;
SongOptions::FailType m_DefaultFailType;
bool m_bDancePointsForOni;
bool m_bTimestamping;
/* 0 = no; 1 = yes; -1 = auto (do whatever is appropriate for the arch). */
int m_iBoostAppPriority;