summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/k001005.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/k001005.cpp')
-rw-r--r--src/mame/video/k001005.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/video/k001005.cpp b/src/mame/video/k001005.cpp
index eb15e55616f..0a6b3e535b7 100644
--- a/src/mame/video/k001005.cpp
+++ b/src/mame/video/k001005.cpp
@@ -1173,16 +1173,16 @@ const device_type K001005 = &device_creator<k001005_device>;
k001005_device::k001005_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
: device_t(mconfig, K001005, "K001005 Polygon Renderer", tag, owner, clock, "k001005", __FILE__),
device_video_interface(mconfig, *this),
- m_k001006(NULL),
- m_fifo(NULL),
+ m_k001006(nullptr),
+ m_fifo(nullptr),
m_status(0),
m_ram_ptr(0),
m_fifo_read_ptr(0),
m_fifo_write_ptr(0),
m_reg_far_z(0)
{
- m_ram[0] = 0;
- m_ram[1] = 0;
+ m_ram[0] = nullptr;
+ m_ram[1] = nullptr;
}
//-------------------------------------------------