diff options
Diffstat (limited to 'src/devices/sound/dmadac.cpp')
-rw-r--r-- | src/devices/sound/dmadac.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/sound/dmadac.cpp b/src/devices/sound/dmadac.cpp index 622b566f1ee..91e6216ef69 100644 --- a/src/devices/sound/dmadac.cpp +++ b/src/devices/sound/dmadac.cpp @@ -201,7 +201,7 @@ const device_type DMADAC = &device_creator<dmadac_sound_device>; dmadac_sound_device::dmadac_sound_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : device_t(mconfig, DMADAC, "DMA-driven DAC", tag, owner, clock, "dmadac", __FILE__), device_sound_interface(mconfig, *this), - m_buffer(NULL), + m_buffer(nullptr), m_bufin(0), m_bufout(0), m_volume(0), |