diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/emu/sound/samples.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/emu/sound/samples.c b/src/emu/sound/samples.c index 2c74a570eec..367b5dbcd8e 100644 --- a/src/emu/sound/samples.c +++ b/src/emu/sound/samples.c @@ -47,7 +47,9 @@ const device_type SAMPLES = &device_creator<samples_device>; samples_device::samples_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : device_t(mconfig, SAMPLES, "Samples", tag, owner, clock, "samples", __FILE__), - device_sound_interface(mconfig, *this) + device_sound_interface(mconfig, *this), + m_channels(0), + m_names(NULL) { } |