diff options
author | 2015-11-19 19:44:23 +0100 | |
---|---|---|
committer | 2015-11-19 19:45:32 +0100 | |
commit | b7f4c4bd2084970f3ec41057a6bafbba96a2386a (patch) | |
tree | 0228ce3f01376ddc19fa529409f5281e8040e433 /src/devices/sound/tc8830f.cpp | |
parent | ae2f72348d5d2c5d55f1e85cc133912638d0effb (diff) |
Fixed uninitialized class members
Diffstat (limited to 'src/devices/sound/tc8830f.cpp')
-rw-r--r-- | src/devices/sound/tc8830f.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/sound/tc8830f.cpp b/src/devices/sound/tc8830f.cpp index 824b9d78958..06759146d93 100644 --- a/src/devices/sound/tc8830f.cpp +++ b/src/devices/sound/tc8830f.cpp @@ -26,7 +26,7 @@ const device_type TC8830F = &device_creator<tc8830f_device>; tc8830f_device::tc8830f_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : device_t(mconfig, TC8830F, "TC8830F", tag, owner, clock, "tc8830f", __FILE__), - device_sound_interface(mconfig, *this), + device_sound_interface(mconfig, *this), m_stream(nullptr), m_playing(false), m_address(0), m_stop_address(0), @@ -37,7 +37,7 @@ tc8830f_device::tc8830f_device(const machine_config &mconfig, const char *tag, d m_output(0), m_command(0), m_cmd_rw(0), - m_phrase(0) + m_phrase(0), m_mem_base(nullptr), m_mem_mask(0) { } |