summaryrefslogtreecommitdiff
path: root/libpcsxcore/ix86_64/iR3000A-64.c
diff options
context:
space:
mode:
Diffstat (limited to 'libpcsxcore/ix86_64/iR3000A-64.c')
-rw-r--r--libpcsxcore/ix86_64/iR3000A-64.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libpcsxcore/ix86_64/iR3000A-64.c b/libpcsxcore/ix86_64/iR3000A-64.c
index 10dfd1ab..b1b5f9e1 100644
--- a/libpcsxcore/ix86_64/iR3000A-64.c
+++ b/libpcsxcore/ix86_64/iR3000A-64.c
@@ -70,8 +70,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])();