summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/pc080sn.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/pc080sn.cpp')
-rw-r--r--src/mame/video/pc080sn.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/video/pc080sn.cpp b/src/mame/video/pc080sn.cpp
index 73c74b68a3d..449cd97351a 100644
--- a/src/mame/video/pc080sn.cpp
+++ b/src/mame/video/pc080sn.cpp
@@ -52,7 +52,7 @@ const device_type PC080SN = &device_creator<pc080sn_device>;
pc080sn_device::pc080sn_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
: device_t(mconfig, PC080SN, "Taito PC080SN", tag, owner, clock, "pc080sn", __FILE__),
- m_ram(NULL),
+ m_ram(nullptr),
m_gfxnum(0),
m_x_offset(0),
m_y_offset(0),
@@ -66,8 +66,8 @@ pc080sn_device::pc080sn_device(const machine_config &mconfig, const char *tag, d
for (int i = 0; i < 2; i++)
{
- m_bg_ram[i] = NULL;
- m_bgscroll_ram[i] = NULL;
+ m_bg_ram[i] = nullptr;
+ m_bgscroll_ram[i] = nullptr;
m_bgscrollx[i] = 0;
m_bgscrolly[i] = 0;
}