diff options
Diffstat (limited to 'src/devices/sound/2612intf.cpp')
-rw-r--r-- | src/devices/sound/2612intf.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/sound/2612intf.cpp b/src/devices/sound/2612intf.cpp index b5464d4e824..c606f4eaece 100644 --- a/src/devices/sound/2612intf.cpp +++ b/src/devices/sound/2612intf.cpp @@ -114,7 +114,7 @@ void ym2612_device::device_start() /**** initialize YM2612 ****/ m_chip = ym2612_init(this,this,clock(),rate,timer_handler,IRQHandler); - assert_always(m_chip != NULL, "Error creating YM2612 chip"); + assert_always(m_chip != nullptr, "Error creating YM2612 chip"); } |