summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/c64/speakeasy.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/c64/speakeasy.cpp')
-rw-r--r--src/devices/bus/c64/speakeasy.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/c64/speakeasy.cpp b/src/devices/bus/c64/speakeasy.cpp
index 4639ab47f1e..23caee3488f 100644
--- a/src/devices/bus/c64/speakeasy.cpp
+++ b/src/devices/bus/c64/speakeasy.cpp
@@ -88,7 +88,7 @@ void c64_speakeasy_cartridge_device::c64_cd_w(offs_t offset, uint8_t data, int s
{
if (!io1)
{
- m_votrax->write(machine().dummy_space(), 0, data & 0x3f);
- m_votrax->inflection_w(machine().dummy_space(), 0, data >> 6);
+ m_votrax->write(data & 0x3f);
+ m_votrax->inflection_w(data >> 6);
}
}