summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/segapcm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/segapcm.cpp')
-rw-r--r--src/devices/sound/segapcm.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/sound/segapcm.cpp b/src/devices/sound/segapcm.cpp
index 50e875bc474..8e92167c708 100644
--- a/src/devices/sound/segapcm.cpp
+++ b/src/devices/sound/segapcm.cpp
@@ -20,11 +20,11 @@ segapcm_device::segapcm_device(const machine_config &mconfig, const char *tag, d
: device_t(mconfig, SEGAPCM, "Sega PCM", tag, owner, clock, "segapcm", __FILE__),
device_sound_interface(mconfig, *this),
m_rom(*this, DEVICE_SELF),
- m_ram(NULL),
+ m_ram(nullptr),
m_bank(0),
m_bankshift(0),
m_bankmask(0),
- m_stream(NULL)
+ m_stream(nullptr)
{
}