summaryrefslogtreecommitdiff
path: root/libpcsxcore/ix86
diff options
context:
space:
mode:
authorSND\edgbla_cp <SND\edgbla_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2012-05-21 13:56:31 +0000
committerSND\edgbla_cp <SND\edgbla_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2012-05-21 13:56:31 +0000
commitc2c0e8eb1890060857b0a93700f7aa055fa43ab9 (patch)
treebf6d7835d106ca71eff67c279e2bd4f95e28b2f1 /libpcsxcore/ix86
parent9a63e315195a0dcd669d2df1c62142eaf740de7a (diff)
downloadpcsxr-c2c0e8eb1890060857b0a93700f7aa055fa43ab9.tar.gz
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@78211 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'libpcsxcore/ix86')
-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])();