diff options
Diffstat (limited to 'src/devices/sound/262intf.cpp')
-rw-r--r-- | src/devices/sound/262intf.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/sound/262intf.cpp b/src/devices/sound/262intf.cpp index b15b6f4deda..d14497e672e 100644 --- a/src/devices/sound/262intf.cpp +++ b/src/devices/sound/262intf.cpp @@ -93,7 +93,7 @@ void ymf262_device::device_start() /* stream system initialize */ m_chip = ymf262_init(this,clock(),rate); - assert_always(m_chip != NULL, "Error creating YMF262 chip"); + assert_always(m_chip != nullptr, "Error creating YMF262 chip"); m_stream = machine().sound().stream_alloc(*this,0,4,rate); |