mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 19:58:53 +00:00
PowerPC: Refactor to class, move to System.
This commit is contained in:
parent
ebbbdc49ab
commit
23843583bf
50 changed files with 705 additions and 531 deletions
|
@ -800,7 +800,8 @@ void MenuBar::AddJITMenu()
|
|||
PowerPC::CPUCore::Interpreter);
|
||||
|
||||
connect(m_jit_interpreter_core, &QAction::toggled, [](bool enabled) {
|
||||
PowerPC::SetMode(enabled ? PowerPC::CoreMode::Interpreter : PowerPC::CoreMode::JIT);
|
||||
Core::System::GetInstance().GetPowerPC().SetMode(enabled ? PowerPC::CoreMode::Interpreter :
|
||||
PowerPC::CoreMode::JIT);
|
||||
});
|
||||
|
||||
m_jit->addSeparator();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue