From 1fb8060263d4841b61ef3c4a8739a260256d4059 Mon Sep 17 00:00:00 2001 From: "Unknown W. Brackets" Date: Sun, 27 Apr 2014 21:07:12 -0700 Subject: [PATCH] Clarify precedence in macro. --- rpcs3/Emu/Cell/PPUInterpreter.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/Cell/PPUInterpreter.h b/rpcs3/Emu/Cell/PPUInterpreter.h index c049a7e95a..9284e52c15 100644 --- a/rpcs3/Emu/Cell/PPUInterpreter.h +++ b/rpcs3/Emu/Cell/PPUInterpreter.h @@ -10,7 +10,7 @@ #include #else #include -#define _rotl64(x,r) (((u64)x << r) | ((u64)x >> (64 - r))) +#define _rotl64(x,r) (((u64)(x) << (r)) | ((u64)(x) >> (64 - (r)))) #endif #define UNIMPLEMENTED() UNK(__FUNCTION__)