mirror of
https://github.com/holub/mame
synced 2025-10-07 01:16:22 +03:00
compile fix for GCC 7.2.1 (nw)
This commit is contained in:
parent
3fd2f2f2d4
commit
ba9c8cc685
@ -745,7 +745,10 @@ WRITE32_MEMBER(gba_rom_3dmatrix_device::write_mapper)
|
|||||||
case 2:
|
case 2:
|
||||||
//printf("m_dst: %08x\n", data); fflush(stdout);
|
//printf("m_dst: %08x\n", data); fflush(stdout);
|
||||||
if (data >= 0xa000000)
|
if (data >= 0xa000000)
|
||||||
printf("Unknown transfer destination 0x%X\n", data); fflush(stdout);
|
{
|
||||||
|
printf("Unknown transfer destination 0x%X\n", data);
|
||||||
|
fflush(stdout);
|
||||||
|
}
|
||||||
m_dst = (data & 0x1ffffff);
|
m_dst = (data & 0x1ffffff);
|
||||||
break;
|
break;
|
||||||
case 3:
|
case 3:
|
||||||
|
Loading…
Reference in New Issue
Block a user