Config: Default PSP model to SLIM on all platforms.

This commit is contained in:
Unknown W. Brackets 2022-08-21 19:05:51 -07:00
parent 4924b22b51
commit 842bf86b1a

View File

@ -1116,15 +1116,6 @@ static ConfigSetting networkSettings[] = {
ConfigSetting(false), ConfigSetting(false),
}; };
static int DefaultPSPModel() {
// TODO: Can probably default this on, but not sure about its memory differences.
#if !PPSSPP_ARCH(AMD64) && !defined(_WIN32)
return PSP_MODEL_FAT;
#else
return PSP_MODEL_SLIM;
#endif
}
static int DefaultSystemParamLanguage() { static int DefaultSystemParamLanguage() {
int defaultLang = PSP_SYSTEMPARAM_LANGUAGE_ENGLISH; int defaultLang = PSP_SYSTEMPARAM_LANGUAGE_ENGLISH;
if (g_Config.bFirstRun) { if (g_Config.bFirstRun) {
@ -1138,7 +1129,7 @@ static int DefaultSystemParamLanguage() {
} }
static ConfigSetting systemParamSettings[] = { static ConfigSetting systemParamSettings[] = {
ReportedConfigSetting("PSPModel", &g_Config.iPSPModel, &DefaultPSPModel, true, true), ReportedConfigSetting("PSPModel", &g_Config.iPSPModel, PSP_MODEL_SLIM, true, true),
ReportedConfigSetting("PSPFirmwareVersion", &g_Config.iFirmwareVersion, PSP_DEFAULT_FIRMWARE, true, true), ReportedConfigSetting("PSPFirmwareVersion", &g_Config.iFirmwareVersion, PSP_DEFAULT_FIRMWARE, true, true),
ConfigSetting("NickName", &g_Config.sNickName, "PPSSPP", true, true), ConfigSetting("NickName", &g_Config.sNickName, "PPSSPP", true, true),
ConfigSetting("MacAddress", &g_Config.sMACAddress, "", true, true), ConfigSetting("MacAddress", &g_Config.sMACAddress, "", true, true),