mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 04:08:55 +00:00
Core/PowerPC: Add option to disable branch following
This commit is contained in:
parent
8c97fb7cd4
commit
df61e527da
7 changed files with 14 additions and 3 deletions
|
@ -219,6 +219,7 @@ void SConfig::SaveCoreSettings(IniFile& ini)
|
|||
core->Set("SkipIPL", bHLE_BS2);
|
||||
core->Set("TimingVariance", iTimingVariance);
|
||||
core->Set("CPUCore", cpu_core);
|
||||
core->Set("JITFollowBranch", bJITFollowBranch);
|
||||
core->Set("Fastmem", bFastmem);
|
||||
core->Set("CPUThread", bCPUThread);
|
||||
core->Set("DSPHLE", bDSPHLE);
|
||||
|
@ -510,6 +511,7 @@ void SConfig::LoadCoreSettings(IniFile& ini)
|
|||
#else
|
||||
core->Get("CPUCore", &cpu_core, PowerPC::CPUCore::Interpreter);
|
||||
#endif
|
||||
core->Get("JITFollowBranch", &bJITFollowBranch, true);
|
||||
core->Get("Fastmem", &bFastmem, true);
|
||||
core->Get("DSPHLE", &bDSPHLE, true);
|
||||
core->Get("TimingVariance", &iTimingVariance, 40);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue