diff options
author | 2015-12-04 07:02:45 +0100 | |
---|---|---|
committer | 2015-12-04 07:02:45 +0100 | |
commit | 0c56ac848dd0eba359500d444ecbb51f215ff5b9 (patch) | |
tree | ad3444449470cec94ccaffd174c5a4d1bc90d1e1 /src/devices/sound/amiga.cpp | |
parent | 68f961927a156c47cb444c1f66258a89342d0205 (diff) |
clang-modernize part 3
Diffstat (limited to 'src/devices/sound/amiga.cpp')
-rw-r--r-- | src/devices/sound/amiga.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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::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; } } |