diff options
Diffstat (limited to 'src/devices/sound/cdp1869.cpp')
-rw-r--r-- | src/devices/sound/cdp1869.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/sound/cdp1869.cpp b/src/devices/sound/cdp1869.cpp index 383d7eb5d88..5f70edc8cef 100644 --- a/src/devices/sound/cdp1869.cpp +++ b/src/devices/sound/cdp1869.cpp @@ -348,9 +348,9 @@ cdp1869_device::cdp1869_device(const machine_config &mconfig, const char *tag, d m_read_pal_ntsc(*this), m_write_prd(*this), m_color_clock(0), - m_stream(NULL), + m_stream(nullptr), m_palette(*this, "palette"), - m_space_config("pageram", ENDIANNESS_LITTLE, 8, 11, 0, NULL, *ADDRESS_MAP_NAME(cdp1869)) + m_space_config("pageram", ENDIANNESS_LITTLE, 8, 11, 0, nullptr, *ADDRESS_MAP_NAME(cdp1869)) { } @@ -467,7 +467,7 @@ void cdp1869_device::device_timer(emu_timer &timer, device_timer_id id, int para const address_space_config *cdp1869_device::memory_space_config(address_spacenum spacenum) const { - return (spacenum == 0) ? &m_space_config : NULL; + return (spacenum == 0) ? &m_space_config : nullptr; } |