Simulates memory stick size to get fixed free space.

Some games may be sensitive to the changes of free space of memory stick, and Android's free space is usually variable.
This commit is contained in:
shenweip 2020-10-08 23:51:56 +08:00
parent f0ea814107
commit 166035a87b
6 changed files with 28 additions and 6 deletions

View file

@ -1030,6 +1030,7 @@ static ConfigSetting systemParamSettings[] = {
ConfigSetting("WlanPowerSave", &g_Config.bWlanPowerSave, (bool) PSP_SYSTEMPARAM_WLAN_POWERSAVE_OFF, true, true),
ReportedConfigSetting("EncryptSave", &g_Config.bEncryptSave, true, true, true),
ConfigSetting("SavedataUpgradeVersion", &g_Config.bSavedataUpgrade, true, true, false),
ConfigSetting("MemStickSize", &g_Config.iMemStickSizeGB, 16, true, false),
ConfigSetting(false),
};