From 0c56ac848dd0eba359500d444ecbb51f215ff5b9 Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Fri, 4 Dec 2015 07:02:45 +0100 Subject: clang-modernize part 3 --- src/devices/sound/amiga.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/devices/sound/amiga.cpp') diff --git a/src/devices/sound/amiga.cpp b/src/devices/sound/amiga.cpp index 84b761e73bd..d11e115a59e 100644 --- a/src/devices/sound/amiga.cpp +++ b/src/devices/sound/amiga.cpp @@ -36,7 +36,7 @@ const device_type AMIGA = &device_creator; amiga_sound_device::amiga_sound_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : device_t(mconfig, AMIGA, "Amiga Paula", tag, owner, clock, "amiga_paula", __FILE__), device_sound_interface(mconfig, *this), - m_stream(NULL) + m_stream(nullptr) { } @@ -232,7 +232,7 @@ void amiga_sound_device::sound_stream_update(sound_stream &stream, stream_sample // if we're in manual mode, signal an interrupt once we latch the low byte if (!chan->dma_enabled && chan->manualmode && (chan->curlocation & 1)) { - signal_irq(NULL, channum); + signal_irq(nullptr, channum); chan->manualmode = false; } } -- cgit v1.2.3-70-g09d2