mingw compile fix (nw)
This commit is contained in:
parent
2cc9ca4c5e
commit
d115e5f061
@ -1469,7 +1469,7 @@ READ8_MEMBER(ddenlovr_state::rongrong_gfxrom_r)
|
|||||||
|
|
||||||
if (address >= size)
|
if (address >= size)
|
||||||
{
|
{
|
||||||
logerror("CPU#0 PC %06X: Error, Blitter address %06X out of range\n", space.device().safe_pc(), address);
|
logerror("CPU#0 PC %06X: Error, Blitter address %" I64FMT "X out of range\n", space.device().safe_pc(), address);
|
||||||
address %= size;
|
address %= size;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2659,7 +2659,7 @@ READ8_MEMBER(ddenlovr_state::hanakanz_gfxrom_r)
|
|||||||
|
|
||||||
if (address >= size)
|
if (address >= size)
|
||||||
{
|
{
|
||||||
logerror("CPU#0 PC %06X: Error, Blitter address %06X out of range\n", space.device().safe_pc(), address);
|
logerror("CPU#0 PC %06X: Error, Blitter address %" I64FMT "X out of range\n", space.device().safe_pc(), address);
|
||||||
address %= size;
|
address %= size;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2883,7 +2883,7 @@ void ddenlovr_state::mjchuuka_get_romdata()
|
|||||||
|
|
||||||
if (address >= size)
|
if (address >= size)
|
||||||
{
|
{
|
||||||
logerror("%s: Error, Blitter address %06X out of range\n", machine().describe_context(), address);
|
logerror("%s: Error, Blitter address %" I64FMT "X out of range\n", machine().describe_context(), address);
|
||||||
address %= size;
|
address %= size;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -374,7 +374,7 @@ void fantland_state::borntofi_adpcm_int( msm5205_device *device, int voice )
|
|||||||
if (start >= len)
|
if (start >= len)
|
||||||
{
|
{
|
||||||
borntofi_adpcm_stop(device, voice);
|
borntofi_adpcm_stop(device, voice);
|
||||||
logerror("adpcm address out of range: %06x\n", start);
|
logerror("adpcm address out of range: %" I64FMT "x\n", start);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user