mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Update Config.cpp
Add jailbreak detection(Non-jailbreak iDevice doesn't support JIT Compiler)
This commit is contained in:
parent
989c9b4371
commit
60f9906bf2
1 changed files with 1 additions and 1 deletions
|
@ -74,7 +74,7 @@ void Config::Load(const char *iniFileName)
|
|||
|
||||
IniFile::Section *cpu = iniFile.GetOrCreateSection("CPU");
|
||||
#ifdef IOS
|
||||
if(isJailed == false)
|
||||
if(isJailed == true)
|
||||
cpu->Get("Jit", &bJit, false);
|
||||
else
|
||||
cpu->Get("Jit", &bJit, true);
|
||||
|
|
Loading…
Add table
Reference in a new issue