add m_bUseAlternateText
This commit is contained in:
@@ -69,6 +69,7 @@ PrefsManager::PrefsManager()
|
||||
m_bShowDontDie = true;
|
||||
m_bShowSelectGroup = true;
|
||||
m_bShowTranslations = true;
|
||||
m_bUseAlternateText = true;
|
||||
m_bArcadeOptionsNavigation = false;
|
||||
m_iUnloadTextureDelaySeconds = 0; // disabled 60*30; // 30 mins
|
||||
m_bCoinOpMode = false;
|
||||
@@ -146,6 +147,7 @@ void PrefsManager::ReadGlobalPrefsFromDisk( bool bSwitchToLastPlayedGame )
|
||||
ini.GetValueB( "Options", "Caution", m_bShowDontDie );
|
||||
ini.GetValueB( "Options", "SelectGroup", m_bShowSelectGroup );
|
||||
ini.GetValueB( "Options", "ShowTranslations", m_bShowTranslations );
|
||||
ini.GetValueB( "Options", "UseAlternateText", m_bUseAlternateText );
|
||||
ini.GetValueB( "Options", "ArcadeOptionsNavigation", m_bArcadeOptionsNavigation );
|
||||
ini.GetValue ( "Options", "DWIPath", m_DWIPath );
|
||||
ini.GetValueI( "Options", "UnloadTextureDelaySeconds", m_iUnloadTextureDelaySeconds );
|
||||
@@ -219,6 +221,7 @@ void PrefsManager::SaveGlobalPrefsToDisk()
|
||||
ini.SetValueB( "Options", "Caution", m_bShowDontDie );
|
||||
ini.SetValueB( "Options", "SelectGroup", m_bShowSelectGroup );
|
||||
ini.SetValueB( "Options", "ShowTranslations", m_bShowTranslations );
|
||||
ini.SetValueB( "Options", "UseAlternateText", m_bUseAlternateText );
|
||||
ini.SetValueB( "Options", "ArcadeOptionsNavigation", m_bArcadeOptionsNavigation );
|
||||
ini.SetValue ( "Options", "DWIPath", m_DWIPath );
|
||||
ini.SetValueI( "Options", "UnloadTextureDelaySeconds", m_iUnloadTextureDelaySeconds );
|
||||
|
||||
Reference in New Issue
Block a user