[MemoryCardManager] Disable Memory Cards by default.

This commit is contained in:
AJ Kelly
2012-03-01 15:48:46 -06:00
parent 241eabcb35
commit 050fb5b473
2 changed files with 10 additions and 1 deletions
+9
View File
@@ -5,6 +5,15 @@ from StepMania 4 alpha 5 to sm-ssc v1.2.5, see Changelog_sm-ssc.txt.
________________________________________________________________________________ ________________________________________________________________________________
================================================================================ ================================================================================
StepMania 5.0 alpha 2 | 20120???
--------------------------------------------------------------------------------
2012/03/01
----------
* [MemoryCardManager] Disable Memory Cards by default. If you want to use them,
set MemoryCards=1 in Save/Preferences.ini (or Save/Static.ini). [AJ]
StepMania 5.0 alpha 1a | 20120219 StepMania 5.0 alpha 1a | 20120219
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------
+1 -1
View File
@@ -39,7 +39,7 @@ static void MemoryCardUsbLevelInit( size_t /*PlayerNumber*/ i, RString &sNameOut
defaultValueOut = -1; defaultValueOut = -1;
} }
static Preference<bool> g_bMemoryCards( "MemoryCards", true ); static Preference<bool> g_bMemoryCards( "MemoryCards", false );
static Preference<bool> g_bMemoryCardProfiles( "MemoryCardProfiles", true ); static Preference<bool> g_bMemoryCardProfiles( "MemoryCardProfiles", true );
// if set, always use the device that mounts to this point // if set, always use the device that mounts to this point