summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/odyssey2/voice.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/odyssey2/voice.cpp')
-rw-r--r--src/devices/bus/odyssey2/voice.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/devices/bus/odyssey2/voice.cpp b/src/devices/bus/odyssey2/voice.cpp
index b23a8abf8a0..e458043d4c4 100644
--- a/src/devices/bus/odyssey2/voice.cpp
+++ b/src/devices/bus/odyssey2/voice.cpp
@@ -21,7 +21,8 @@ DEFINE_DEVICE_TYPE(O2_ROM_VOICE, o2_voice_device, "o2_voice", "Odyssey 2 The Voi
//-------------------------------------------------
o2_voice_device::o2_voice_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
- o2_rom_device(mconfig, O2_ROM_VOICE, tag, owner, clock),
+ device_t(mconfig, O2_ROM_VOICE, tag, owner, clock),
+ device_o2_cart_interface(mconfig, *this),
m_speech(*this, "sp0256_speech"),
m_subslot(*this, "subslot")
{ }