summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xlibpcsxcore/r3000a.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libpcsxcore/r3000a.h b/libpcsxcore/r3000a.h
index ee70ad80..cbd0e20f 100755
--- a/libpcsxcore/r3000a.h
+++ b/libpcsxcore/r3000a.h
@@ -255,7 +255,7 @@ static inline u32 *Read_ICache(u32 pc, boolean isolate) {
}
// U64 and S64 are used to wrap long integer constants.
-#ifdef __GNUC__
+#if defined __GNUC__ || defined _MSC_VER_
#define U64(val) val##ULL
#define S64(val) val##LL
#else