diff options
Diffstat (limited to 'src/devices/sound/dac.cpp')
-rw-r--r-- | src/devices/sound/dac.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/sound/dac.cpp b/src/devices/sound/dac.cpp index 8e4baffe3aa..d51b51c1410 100644 --- a/src/devices/sound/dac.cpp +++ b/src/devices/sound/dac.cpp @@ -27,7 +27,7 @@ const device_type DAC = &device_creator<dac_device>; dac_device::dac_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : device_t(mconfig, DAC, "DAC", tag, owner, clock, "dac", __FILE__), device_sound_interface(mconfig, *this), - m_stream(NULL), + m_stream(nullptr), m_output(0) { } |