diff options
Diffstat (limited to 'src/devices/sound/beep.cpp')
-rw-r--r-- | src/devices/sound/beep.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/sound/beep.cpp b/src/devices/sound/beep.cpp index ce5558f3320..e5c9362dc9f 100644 --- a/src/devices/sound/beep.cpp +++ b/src/devices/sound/beep.cpp @@ -34,7 +34,7 @@ const device_type BEEP = &device_creator<beep_device>; beep_device::beep_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : device_t(mconfig, BEEP, "Beep", tag, owner, clock, "beep", __FILE__), device_sound_interface(mconfig, *this), - m_stream(NULL), + m_stream(nullptr), m_enable(0), m_frequency(0), m_incr(0), |