Merge pull request #7235 from spycrab/jit_disable_following

Core/PowerPC: Add option to disable branch following
This commit is contained in:
spycrab
2018-07-09 23:22:08 +02:00
committed by GitHub
8 changed files with 17 additions and 3 deletions

View File

@ -240,6 +240,8 @@ bool BootCore(std::unique_ptr<BootParameters> boot)
IniFile::Section* controls_section = game_ini.GetOrCreateSection("Controls");
core_section->Get("CPUThread", &StartUp.bCPUThread, StartUp.bCPUThread);
core_section->Get("JITFollowBranch", &StartUp.bJITFollowBranch, StartUp.bJITFollowBranch);
core_section->Get("EnableCheats", &StartUp.bEnableCheats, StartUp.bEnableCheats);
core_section->Get("SyncOnSkipIdle", &StartUp.bSyncGPUOnSkipIdleHack,
StartUp.bSyncGPUOnSkipIdleHack);