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/i5000.cpp | |
parent | ae2f72348d5d2c5d55f1e85cc133912638d0effb (diff) |
Fixed uninitialized class members
Diffstat (limited to 'src/devices/sound/i5000.cpp')
-rw-r--r-- | src/devices/sound/i5000.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/sound/i5000.cpp b/src/devices/sound/i5000.cpp index df86311904e..22d390cc89c 100644 --- a/src/devices/sound/i5000.cpp +++ b/src/devices/sound/i5000.cpp @@ -25,7 +25,7 @@ const device_type I5000_SND = &device_creator<i5000snd_device>; i5000snd_device::i5000snd_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : device_t(mconfig, I5000_SND, "I5000", tag, owner, clock, "i5000snd", __FILE__), - device_sound_interface(mconfig, *this) + device_sound_interface(mconfig, *this), m_stream(nullptr), m_rom_base(nullptr), m_rom_mask(0) { } |