diff options
Diffstat (limited to 'src/devices/sound/mos6581.cpp')
-rw-r--r-- | src/devices/sound/mos6581.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/sound/mos6581.cpp b/src/devices/sound/mos6581.cpp index 73115c79f83..89ed5e375c8 100644 --- a/src/devices/sound/mos6581.cpp +++ b/src/devices/sound/mos6581.cpp @@ -42,7 +42,7 @@ mos6581_device::mos6581_device(const machine_config &mconfig, device_type type, device_sound_interface(mconfig, *this), m_read_potx(*this), m_read_poty(*this), - m_stream(NULL), + m_stream(nullptr), m_variant(variant) { m_token = global_alloc_clear(SID6581_t); @@ -53,7 +53,7 @@ mos6581_device::mos6581_device(const machine_config &mconfig, const char *tag, d device_sound_interface(mconfig, *this), m_read_potx(*this), m_read_poty(*this), - m_stream(NULL), + m_stream(nullptr), m_variant(TYPE_6581) { m_token = global_alloc_clear(SID6581_t); |