From c40b7a43048d29cb697f96e370b2539263547188 Mon Sep 17 00:00:00 2001 From: "R. Belmont" Date: Mon, 28 Feb 2011 14:14:38 +0000 Subject: [PATCH] Apple GCC apparently thinks foo&3 can be > 3. (no whatsnew) --- src/mame/machine/naomibd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/machine/naomibd.c b/src/mame/machine/naomibd.c index ca1efac1066..fef6a438f9c 100644 --- a/src/mame/machine/naomibd.c +++ b/src/mame/machine/naomibd.c @@ -353,7 +353,7 @@ int naomibd_get_type(device_t *device) // M1 decryption/decompression static UINT8 naomibd_m1dec_readbyte(naomibd_state *naomibd) { - UINT8 v; + UINT8 v = 0; switch (naomibd->prot.s_in_pos & 3) {