From 388875c61d471d882c811a785ea27c93f9349ff4 Mon Sep 17 00:00:00 2001 From: "Alex W. Jackson" Date: Thu, 5 Feb 2015 16:31:45 -0500 Subject: [PATCH] jagblit.inc: attempt to fix expression that triggers clang warning (nw) --- src/mame/video/jagblit.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/video/jagblit.inc b/src/mame/video/jagblit.inc index b2af11b1e40..e31e492800b 100644 --- a/src/mame/video/jagblit.inc +++ b/src/mame/video/jagblit.inc @@ -344,7 +344,7 @@ void jaguar_state::FUNCNAME(UINT32 command, UINT32 a1flags, UINT32 a2flags) } /* check for unhandled command bits */ - if ((COMMAND & 0x24003000) && LOG_UNHANDLED_BLITS) + if (LOG_UNHANDLED_BLITS && (COMMAND & 0x24003000)) logerror("Blitter unhandled: these command bits: %08X\n", COMMAND & 0x24003000); /* top of the outer loop */