summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp
diff options
context:
space:
mode:
authorJosJuice <josjuice@gmail.com>2023-04-10 15:38:19 +0200
committerGitHub <noreply@github.com>2023-04-10 15:38:19 +0200
commit4c80c992eb9fdfceee6ff3e6b15a17ac89bc5914 (patch)
tree30b0173c93d94adcba797f73ab308ada90327612 /Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp
parentebbbdc49ab3412693c40add3a56183926e0559b7 (diff)
parent23843583bf2fcc349bef18b37e1a8539be3db17d (diff)
Merge pull request #11741 from AdmiralCurtiss/ppc-class
PowerPC: Refactor to class, move to System.
Diffstat (limited to 'Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp')
-rw-r--r--Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp b/Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp
index 11f2a9a287..533fa5e55f 100644
--- a/Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp
+++ b/Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp
@@ -487,8 +487,9 @@ void CodeDiffDialog::OnSetBLR()
return;
{
- Core::CPUThreadGuard guard(Core::System::GetInstance());
- PowerPC::debug_interface.SetPatch(guard, symbol->address, 0x4E800020);
+ auto& system = Core::System::GetInstance();
+ Core::CPUThreadGuard guard(system);
+ system.GetPowerPC().GetDebugInterface().SetPatch(guard, symbol->address, 0x4E800020);
}
int row = item->row();