jagblit.inc: attempt to fix expression that triggers clang warning (nw)

This commit is contained in:
Alex W. Jackson 2015-02-05 16:31:45 -05:00
parent 413b612c11
commit 388875c61d

View File

@ -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 */