mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-12 12:32:06 +00:00
DebugInterface: Rename InsertBLR to Patch
This commit is contained in:
parent
428f0fa69b
commit
f65dcdcdca
6 changed files with 9 additions and 9 deletions
|
@ -132,9 +132,9 @@ void DSPDebugInterface::ToggleMemCheck(unsigned int address, bool read, bool wri
|
|||
PanicAlert("MemCheck functionality not supported in DSP module.");
|
||||
}
|
||||
|
||||
void DSPDebugInterface::InsertBLR(unsigned int address, unsigned int value)
|
||||
void DSPDebugInterface::Patch(unsigned int address, unsigned int value)
|
||||
{
|
||||
PanicAlert("insertBLR functionality not supported in DSP module.");
|
||||
PanicAlert("Patch functionality not supported in DSP module.");
|
||||
}
|
||||
|
||||
// =======================================================
|
||||
|
|
|
@ -37,7 +37,7 @@ public:
|
|||
void SetPC(unsigned int address) override;
|
||||
void Step() override {}
|
||||
void RunToBreakpoint() override;
|
||||
void InsertBLR(unsigned int address, unsigned int value) override;
|
||||
void Patch(unsigned int address, unsigned int value) override;
|
||||
int GetColor(unsigned int address) override;
|
||||
std::string GetDescription(unsigned int address) override;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue