summaryrefslogtreecommitdiff
path: root/libpcsxcore/ix86/iR3000A.c
diff options
context:
space:
mode:
Diffstat (limited to 'libpcsxcore/ix86/iR3000A.c')
-rw-r--r--libpcsxcore/ix86/iR3000A.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libpcsxcore/ix86/iR3000A.c b/libpcsxcore/ix86/iR3000A.c
index f1d74648..029b8bab 100644
--- a/libpcsxcore/ix86/iR3000A.c
+++ b/libpcsxcore/ix86/iR3000A.c
@@ -67,8 +67,8 @@ static iRegisters iRegsS[32];
#define ST_CONST 1
#define ST_MAPPED 2
-#define IsConst(reg) iRegs[reg].state == ST_CONST
-#define IsMapped(reg) iRegs[reg].state == ST_MAPPED
+#define IsConst(reg) (iRegs[reg].state == ST_CONST)
+#define IsMapped(reg) (iRegs[reg].state == ST_MAPPED)
static void (*recBSC[64])();
static void (*recSPC[64])();