Make the iPSPModel check more general so that iOS also uses 0. Need to figure out what the problem is in the first place though....

This commit is contained in:
Henrik Rydgård 2013-12-09 12:49:08 +01:00
parent 3b44a60505
commit 1e30bdfce8

View File

@ -314,9 +314,9 @@ void Config::Load(const char *iniFileName, const char *controllerIniFilename) {
IniFile::Section *network = iniFile.GetOrCreateSection("Network");
network->Get("EnableWlan", &bEnableWlan, false);
IniFile::Section *pspConfig = iniFile.GetOrCreateSection("SystemParam");
#ifndef ANDROID
#if defined(ARM)
pspConfig->Get("PSPModel", &iPSPModel, PSP_MODEL_SLIM);
#else
pspConfig->Get("PSPModel", &iPSPModel, PSP_MODEL_FAT);