diff options
Diffstat (limited to 'src/devices/sound/2413intf.cpp')
-rw-r--r-- | src/devices/sound/2413intf.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/sound/2413intf.cpp b/src/devices/sound/2413intf.cpp index 3ecfd061241..2010264313d 100644 --- a/src/devices/sound/2413intf.cpp +++ b/src/devices/sound/2413intf.cpp @@ -41,7 +41,7 @@ void ym2413_device::device_start() /* emulator create */ m_chip = ym2413_init(this, clock(), rate); - assert_always(m_chip != NULL, "Error creating YM2413 chip"); + assert_always(m_chip != nullptr, "Error creating YM2413 chip"); /* stream system initialize */ m_stream = machine().sound().stream_alloc(*this,0,2,rate); |