diff options
Diffstat (limited to 'libpcsxcore/debug.c')
-rw-r--r-- | libpcsxcore/debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpcsxcore/debug.c b/libpcsxcore/debug.c index 307a002..763dc45 100644 --- a/libpcsxcore/debug.c +++ b/libpcsxcore/debug.c @@ -396,7 +396,7 @@ void ProcessDebug() { if ((psxRegs.code >> 26) == 3) { MarkMap(_JumpTarget_, MAP_EXEC_JAL); } - if (((psxRegs.code >> 26) == 0) && ((psxRegs.code && 0x3F) == 9)) { + if (((psxRegs.code >> 26) == 0) && ((psxRegs.code & 0x3F) == 9)) { MarkMap(_Rd_, MAP_EXEC_JAL); } } |