mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
DebugInterface: Rename InsertBLR to Patch
This commit is contained in:
@ -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();
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user