summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/mcr.cpp
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2015-12-04 11:05:13 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2015-12-04 11:05:13 +0100
commit41ec590ea670a5ac46be281382525026ad0759ab (patch)
tree21acc05c7f8548be4bdf62bd272cb8f3c7f7e2c7 /src/mame/drivers/mcr.cpp
parent1b0ec08af5cd3b3268b5889ba4e30409431434e2 (diff)
clang-modernize part 7
Diffstat (limited to 'src/mame/drivers/mcr.cpp')
-rw-r--r--src/mame/drivers/mcr.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/mcr.cpp b/src/mame/drivers/mcr.cpp
index 8bd89ee8ec0..43639f70999 100644
--- a/src/mame/drivers/mcr.cpp
+++ b/src/mame/drivers/mcr.cpp
@@ -1735,7 +1735,7 @@ static const char *const journey_sample_names[] =
{
"*journey",
"sepways",
- 0
+ nullptr
};
static const char *const twotiger_sample_names[] =
@@ -1743,7 +1743,7 @@ static const char *const twotiger_sample_names[] =
"*twotiger",
"left",
"right",
- 0
+ nullptr
};
/*************************************
@@ -2781,7 +2781,7 @@ void mcr_state::mcr_init(int cpuboard, int vidboard, int ssioboard)
save_item(NAME(last_op4));
midway_ssio_device *ssio = machine().device<midway_ssio_device>("ssio");
- if (ssio != NULL)
+ if (ssio != nullptr)
{
ssio->set_custom_output(0, 0xff, write8_delegate(FUNC(mcr_state::mcr_control_port_w), this));
}