summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/c64/magic_formel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/c64/magic_formel.cpp')
-rw-r--r--src/devices/bus/c64/magic_formel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/c64/magic_formel.cpp b/src/devices/bus/c64/magic_formel.cpp
index 7575320b765..e73263db277 100644
--- a/src/devices/bus/c64/magic_formel.cpp
+++ b/src/devices/bus/c64/magic_formel.cpp
@@ -239,7 +239,7 @@ void c64_magic_formel_cartridge_device::c64_cd_w(address_space &space, offs_t of
offs_t addr = (offset >> 6) & 0x03;
uint8_t new_data = (BIT(data, 1) << 7) | (offset & 0x3f);
- m_pia->write(space, addr, new_data);
+ m_pia->write(addr, new_data);
}
else if (offset == 0x0001)
{