mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
GE Debugger: Fix bad read on step at start of VRAM.
This commit is contained in:
parent
a901fa4315
commit
27d00199c8
1 changed files with 2 additions and 1 deletions
|
@ -2708,7 +2708,8 @@ void GPUCommon::ResetListState(int listID, DisplayListState state) {
|
|||
|
||||
GPUDebugOp GPUCommon::DissassembleOp(u32 pc, u32 op) {
|
||||
char buffer[1024];
|
||||
GeDisassembleOp(pc, op, Memory::Read_U32(pc - 4), buffer, sizeof(buffer));
|
||||
u32 prev = Memory::IsValidAddress(pc - 4) ? Memory::ReadUnchecked_U32(pc - 4) : 0;
|
||||
GeDisassembleOp(pc, op, prev, buffer, sizeof(buffer));
|
||||
|
||||
GPUDebugOp info;
|
||||
info.pc = pc;
|
||||
|
|
Loading…
Add table
Reference in a new issue