mirror of
https://github.com/holub/mame
synced 2025-04-24 09:20:02 +03:00
fixed clang warning in src/mame/video/jagblit.inc (nw)
This commit is contained in:
parent
7f72372098
commit
2598d2a29b
@ -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)
|
||||
|
@ -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 */
|
||||
|
Loading…
Reference in New Issue
Block a user