diff options
Diffstat (limited to 'src/devices/sound/tms5220.cpp')
-rw-r--r-- | src/devices/sound/tms5220.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/sound/tms5220.cpp b/src/devices/sound/tms5220.cpp index b2c39d4961d..ac512ffb004 100644 --- a/src/devices/sound/tms5220.cpp +++ b/src/devices/sound/tms5220.cpp @@ -1464,7 +1464,7 @@ void tms5220_device::device_start() } else { - m_speechrom = NULL; + m_speechrom = nullptr; } set_variant(TMS5220_IS_5220); @@ -1917,7 +1917,7 @@ tms5220_device::tms5220_device(const machine_config &mconfig, const char *tag, d device_sound_interface(mconfig, *this), m_irq_handler(*this), m_readyq_handler(*this), - m_speechrom_tag(NULL) + m_speechrom_tag(nullptr) { } @@ -1926,7 +1926,7 @@ tms5220_device::tms5220_device(const machine_config &mconfig, device_type type, device_sound_interface(mconfig, *this), m_irq_handler(*this), m_readyq_handler(*this), - m_speechrom_tag(NULL) + m_speechrom_tag(nullptr) { } |