mirror of
https://github.com/holub/mame
synced 2025-04-25 09:50:04 +03:00
jagblit.inc: attempt to fix expression that triggers clang warning (nw)
This commit is contained in:
parent
413b612c11
commit
388875c61d
@ -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 */
|
||||
|
Loading…
Reference in New Issue
Block a user