mirror of
https://github.com/holub/mame
synced 2025-05-23 14:19:01 +03:00
> Shouldn't you also add a return statement?
yes, but it doesn't matter: ifs/cases afterwards would be FALSE anyway
This commit is contained in:
parent
4bb09d5632
commit
4f4af5ca30
@ -547,6 +547,7 @@ void superfx_mmio_write(const device_config *cpu, UINT32 addr, UINT8 data)
|
|||||||
if(addr >= 0x3100 && addr <= 0x32ff)
|
if(addr >= 0x3100 && addr <= 0x32ff)
|
||||||
{
|
{
|
||||||
superfx_cache_mmio_write(cpustate, addr - 0x3100, data);
|
superfx_cache_mmio_write(cpustate, addr - 0x3100, data);
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(addr >= 0x3000 && addr <= 0x301f)
|
if(addr >= 0x3000 && addr <= 0x301f)
|
||||||
|
Loading…
Reference in New Issue
Block a user