summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/k051316.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/k051316.cpp')
-rw-r--r--src/mame/video/k051316.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/k051316.cpp b/src/mame/video/k051316.cpp
index a5411f463ae..958b38fab3f 100644
--- a/src/mame/video/k051316.cpp
+++ b/src/mame/video/k051316.cpp
@@ -106,7 +106,7 @@ GFXDECODE_END
k051316_device::k051316_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
: device_t(mconfig, K051316, "K051316 PSAC", tag, owner, clock, "k051316", __FILE__),
device_gfx_interface(mconfig, *this, gfxinfo),
- m_zoom_rom(NULL),
+ m_zoom_rom(nullptr),
m_zoom_size(0),
m_dx(0),
m_dy(0),
@@ -152,7 +152,7 @@ void k051316_device::set_bpp(device_t &device, int bpp)
void k051316_device::device_start()
{
memory_region *ROM = region();
- if (ROM != NULL)
+ if (ROM != nullptr)
{
m_zoom_rom = ROM->base();
m_zoom_size = ROM->bytes();