mirror of
https://github.com/holub/mame
synced 2025-10-06 09:00:04 +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:
|
||||
//printf("m_dst: %08x\n", data); fflush(stdout);
|
||||
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);
|
||||
break;
|
||||
case 3:
|
||||
|
Loading…
Reference in New Issue
Block a user