summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Curt Coder <curtcoder@mail.com>2009-09-06 13:48:20 +0000
committer Curt Coder <curtcoder@mail.com>2009-09-06 13:48:20 +0000
commit814b15eaf3b95005e1615ec90281a96f55674e86 (patch)
treeb1eb32a03a72579974cf9ebf8d9323931782c373
parent09dc72412faf6add7236586f6fb679dcd777ce27 (diff)
Fixed 64-bit MSVC compile.
-rw-r--r--src/emu/cpu/superfx/superfx.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/emu/cpu/superfx/superfx.c b/src/emu/cpu/superfx/superfx.c
index 0ea8a1cf693..f0573b4e950 100644
--- a/src/emu/cpu/superfx/superfx.c
+++ b/src/emu/cpu/superfx/superfx.c
@@ -534,7 +534,8 @@ void superfx_mmio_write(const device_config *cpu, UINT32 addr, UINT8 data)
if(addr >= 0x3100 && addr <= 0x32ff)
{
- return superfx_cache_mmio_write(cpustate, addr - 0x3100, data);
+ superfx_cache_mmio_write(cpustate, addr - 0x3100, data);
+ return;
}
if(addr >= 0x3000 && addr <= 0x301f)