diff options
Diffstat (limited to 'src/devices/sound/2203intf.cpp')
-rw-r--r-- | src/devices/sound/2203intf.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/sound/2203intf.cpp b/src/devices/sound/2203intf.cpp index 279ae52cea4..8b1bada64ec 100644 --- a/src/devices/sound/2203intf.cpp +++ b/src/devices/sound/2203intf.cpp @@ -134,7 +134,7 @@ void ym2203_device::device_start() /* Initialize FM emurator */ m_chip = ym2203_init(this,this,clock(),rate,timer_handler,IRQHandler,&psgintf); - assert_always(m_chip != NULL, "Error creating YM2203 chip"); + assert_always(m_chip != nullptr, "Error creating YM2203 chip"); } //------------------------------------------------- |