Skip to content

Commit

Permalink
Savedata: Upgrade secureVersion by default.
Browse files Browse the repository at this point in the history
This may help fix save data made incorrectly, but may also break save data
last saved in PPSSPP v0.9.8 or lower.  Can be toggled off otherwise.
  • Loading branch information
unknownbrackets committed Jun 24, 2018
1 parent 93d96b8 commit ecdc4bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core/Config.cpp
Expand Up @@ -797,7 +797,7 @@ static ConfigSetting systemParamSettings[] = {
#endif #endif
ConfigSetting("WlanPowerSave", &g_Config.bWlanPowerSave, (bool) PSP_SYSTEMPARAM_WLAN_POWERSAVE_OFF, true, true), ConfigSetting("WlanPowerSave", &g_Config.bWlanPowerSave, (bool) PSP_SYSTEMPARAM_WLAN_POWERSAVE_OFF, true, true),
ReportedConfigSetting("EncryptSave", &g_Config.bEncryptSave, true, true, true), ReportedConfigSetting("EncryptSave", &g_Config.bEncryptSave, true, true, true),
ConfigSetting("SavedataUpgrade", &g_Config.bSavedataUpgrade, false, true, false), ConfigSetting("SavedataUpgradeVersion", &g_Config.bSavedataUpgrade, true, true, false),


ConfigSetting(false), ConfigSetting(false),
}; };
Expand Down

0 comments on commit ecdc4bb

Please sign in to comment.