mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Skip emuhacks when showing encodings in debugger.
This can cause confusion when it doesn't match the displayed disasm.
This commit is contained in:
parent
9d3cf346c3
commit
0ae9f06376
1 changed files with 5 additions and 4 deletions
|
@ -230,10 +230,11 @@ bool CtrlDisAsmView::getDisasmAddressText(u32 address, char* dest, bool abbrevia
|
|||
return false;
|
||||
}
|
||||
} else {
|
||||
if (showData)
|
||||
sprintf(dest,"%08X %08X",address,Memory::Read_U32(address));
|
||||
else
|
||||
sprintf(dest,"%08X",address);
|
||||
if (showData) {
|
||||
sprintf(dest, "%08X %08X", address, Memory::Read_Instruction(address, true).encoding);
|
||||
} else {
|
||||
sprintf(dest, "%08X", address);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue