diff options
| author | Sepalani <sepalani@hotmail.fr> | 2017-10-05 20:09:12 +0200 |
|---|---|---|
| committer | Sepalani <sepalani@hotmail.fr> | 2017-10-05 20:22:16 +0200 |
| commit | f65dcdcdca969031e207cdd4cb204a18cdd8e9a1 (patch) | |
| tree | d02619e0edacffd11e065b3a7bf9996f57308fb3 /Source/Core/DolphinWX/Debugger/CodeView.cpp | |
| parent | 428f0fa69b631d72cf55cb83695ff8475bc2ba18 (diff) | |
DebugInterface: Rename InsertBLR to Patch
Diffstat (limited to 'Source/Core/DolphinWX/Debugger/CodeView.cpp')
| -rw-r--r-- | Source/Core/DolphinWX/Debugger/CodeView.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/DolphinWX/Debugger/CodeView.cpp b/Source/Core/DolphinWX/Debugger/CodeView.cpp index 8ee5b191f1..554d1ee460 100644 --- a/Source/Core/DolphinWX/Debugger/CodeView.cpp +++ b/Source/Core/DolphinWX/Debugger/CodeView.cpp @@ -227,9 +227,9 @@ void CCodeView::InsertBlrNop(int Blr) temp.oldValue = m_debugger->ReadMemory(m_selection); m_blrList.push_back(temp); if (Blr == 0) - m_debugger->InsertBLR(m_selection, 0x4e800020); + m_debugger->Patch(m_selection, 0x4e800020); else - m_debugger->InsertBLR(m_selection, 0x60000000); + m_debugger->Patch(m_selection, 0x60000000); } Refresh(); } @@ -320,7 +320,7 @@ void CCodeView::OnPopupMenu(wxCommandEvent& event) unsigned long code; if (dialog.GetValue().ToULong(&code, 0) && code <= std::numeric_limits<u32>::max()) { - m_debugger->InsertBLR(m_selection, code); + m_debugger->Patch(m_selection, code); Refresh(); } } |
