aboutsummaryrefslogtreecommitdiff
path: root/libpcsxcore/debug.c
diff options
context:
space:
mode:
Diffstat (limited to 'libpcsxcore/debug.c')
-rw-r--r--libpcsxcore/debug.c2
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);
}
}