fixed clang warning in src/mame/video/jagblit.inc (nw)

This commit is contained in:
Oliver Stöneberg 2014-09-23 09:47:40 +00:00
parent 7f72372098
commit 2598d2a29b
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ CCOMFLAGS += -Wno-self-assign-field
# caused by src/emu/cpu/tms34010/34010gfx.c
CCOMFLAGS += -Wno-shift-count-overflow
# caused by src/emu/cpu/h8/h8_timer16.c, src/mame/video/jagblit.inc, src/emu/video/stvvdp2.c
# caused by src/emu/cpu/h8/h8_timer16.c, src/emu/video/stvvdp2.c
CCOMFLAGS += -Wno-constant-logical-operand
# TODO: needs to use $(CC)

View File

@ -344,7 +344,7 @@ void jaguar_state::FUNCNAME(UINT32 command, UINT32 a1flags, UINT32 a2flags)
}
/* check for unhandled command bits */
if (LOG_UNHANDLED_BLITS && (COMMAND & 0x24003000))
if ((LOG_UNHANDLED_BLITS) && (COMMAND & 0x24003000))
logerror("Blitter unhandled: these command bits: %08X\n", COMMAND & 0x24003000);
/* top of the outer loop */