From 9d26cad1e39af6e4c96a4efb5ae00332207163ca Mon Sep 17 00:00:00 2001 From: aliaspider Date: Thu, 30 Oct 2014 05:50:41 +0100 Subject: remove warnings --- source/spc700.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/spc700.c') diff --git a/source/spc700.c b/source/spc700.c index 2607e1a..904c429 100644 --- a/source/spc700.c +++ b/source/spc700.c @@ -231,7 +231,7 @@ APUSetZN8 ((uint8) Int16); #else #define PushW(w)\ *(IAPU.RAM + 0xff + IAPU.Registers.S) = w;\ - *(IAPU.RAM + 0x100 + IAPU.Registers.S) = (w >> 8);\ + *(IAPU.RAM + 0x100 + IAPU.Registers.S) = ((w) >> 8);\ IAPU.Registers.S -= 2; #define PopW(w)\ IAPU.Registers.S += 2; \ -- cgit v1.2.3