aboutsummaryrefslogtreecommitdiff
path: root/libpcsxcore/debug.c
diff options
context:
space:
mode:
authornotaz2013-04-01 01:13:10 +0300
committernotaz2013-04-01 01:20:19 +0300
commit57ab9898652b5e6fe6f790a5ca2bd17bf96936e8 (patch)
tree1e141bd3259c41f5f7d90941791cf9d31cc43650 /libpcsxcore/debug.c
parentc43b5311cb0f9b559b65c94ad4d8f6afaddae27f (diff)
downloadpcsx_rearmed-57ab9898652b5e6fe6f790a5ca2bd17bf96936e8.tar.gz
pcsx_rearmed-57ab9898652b5e6fe6f790a5ca2bd17bf96936e8.tar.bz2
pcsx_rearmed-57ab9898652b5e6fe6f790a5ca2bd17bf96936e8.zip
fix clang warnings
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);
}
}