mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Debugger: Prevent invalid address on syscall.
This commit is contained in:
parent
79d16f7b9f
commit
8506da14f0
1 changed files with 1 additions and 1 deletions
|
@ -1531,7 +1531,7 @@ skip:
|
|||
}
|
||||
|
||||
// lw, sh, ...
|
||||
if ((opInfo & IN_MEM) || (opInfo & OUT_MEM)) {
|
||||
if (!IsSyscall(op) && (opInfo & (IN_MEM | OUT_MEM)) != 0) {
|
||||
info.isDataAccess = true;
|
||||
switch (opInfo & MEMTYPE_MASK) {
|
||||
case MEMTYPE_BYTE:
|
||||
|
|
Loading…
Add table
Reference in a new issue