mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-04 17:32:47 +00:00
PowerPC/PPCTables: Pass instruction address to GetOpInfo().
This commit is contained in:
parent
6018daa3fa
commit
e5941428d1
7 changed files with 23 additions and 25 deletions
|
@ -1699,7 +1699,7 @@ void MenuBar::SearchInstruction()
|
|||
addr += 4)
|
||||
{
|
||||
const auto ins_name = QString::fromStdString(
|
||||
PPCTables::GetInstructionName(PowerPC::MMU::HostRead_U32(guard, addr)));
|
||||
PPCTables::GetInstructionName(PowerPC::MMU::HostRead_U32(guard, addr), addr));
|
||||
if (op == ins_name)
|
||||
{
|
||||
NOTICE_LOG_FMT(POWERPC, "Found {} at {:08x}", op.toStdString(), addr);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue