From 7f0dda1e1d2195dfd2a4eacdd68a77d5a6198e84 Mon Sep 17 00:00:00 2001 From: brand175 <20964160+brand175@users.noreply.github.com> Date: Wed, 6 Jun 2018 18:17:03 -0700 Subject: [PATCH] Added important missing setting This fixes the JITARM64 crashes on jailbroken devices. --- GC4iOS/Bridge/DolphinBridge.mm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/GC4iOS/Bridge/DolphinBridge.mm b/GC4iOS/Bridge/DolphinBridge.mm index 9c57ca2..545fc37 100644 --- a/GC4iOS/Bridge/DolphinBridge.mm +++ b/GC4iOS/Bridge/DolphinBridge.mm @@ -198,6 +198,7 @@ - (void)saveDefaultPreferences IniFile dolphinConfig; dolphinConfig.Load(File::GetUserPath(D_CONFIG_IDX) + "Dolphin.ini"); dolphinConfig.GetOrCreateSection("Core")->Set("CPUCore", PowerPC::CORE_JITARM64); + dolphinConfig.GetOrCreateSection("Core")->Set("MMU", YES); dolphinConfig.GetOrCreateSection("Core")->Set("CPUThread", YES); dolphinConfig.GetOrCreateSection("Core")->Set("Fastmem", NO); dolphinConfig.GetOrCreateSection("Core")->Set("GFXBackend", std::string("OGL")); @@ -283,4 +284,4 @@ - (void)createUserFoldersAtPath:(NSString*)path UICommon::CreateDirectories(); } -@end \ No newline at end of file +@end