Fixed clang build. (nw)

This commit is contained in:
Curt Coder 2014-03-31 10:19:47 +00:00
parent d115e5f061
commit 55a53a4729
2 changed files with 4 additions and 4 deletions

View File

@ -1469,7 +1469,7 @@ READ8_MEMBER(ddenlovr_state::rongrong_gfxrom_r)
if (address >= size)
{
logerror("CPU#0 PC %06X: Error, Blitter address %" I64FMT "X out of range\n", space.device().safe_pc(), address);
logerror("CPU#0 PC %06X: Error, Blitter address %lX out of range\n", space.device().safe_pc(), address);
address %= size;
}
@ -2659,7 +2659,7 @@ READ8_MEMBER(ddenlovr_state::hanakanz_gfxrom_r)
if (address >= size)
{
logerror("CPU#0 PC %06X: Error, Blitter address %" I64FMT "X out of range\n", space.device().safe_pc(), address);
logerror("CPU#0 PC %06X: Error, Blitter address %lX out of range\n", space.device().safe_pc(), address);
address %= size;
}
@ -2883,7 +2883,7 @@ void ddenlovr_state::mjchuuka_get_romdata()
if (address >= size)
{
logerror("%s: Error, Blitter address %" I64FMT "X out of range\n", machine().describe_context(), address);
logerror("%s: Error, Blitter address %lX out of range\n", machine().describe_context(), address);
address %= size;
}

View File

@ -374,7 +374,7 @@ void fantland_state::borntofi_adpcm_int( msm5205_device *device, int voice )
if (start >= len)
{
borntofi_adpcm_stop(device, voice);
logerror("adpcm address out of range: %" I64FMT "x\n", start);
logerror("adpcm address out of range: %lx\n", start);
return;
}