From 1e30bdfce8083e660aa547df9a31697992086d4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Rydg=C3=A5rd?= Date: Mon, 9 Dec 2013 12:49:08 +0100 Subject: [PATCH] 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.... --- Core/Config.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Core/Config.cpp b/Core/Config.cpp index 5f73b50e9b..89a3f27341 100644 --- a/Core/Config.cpp +++ b/Core/Config.cpp @@ -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);