summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/arkanoid.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/arkanoid.cpp')
-rw-r--r--src/mame/video/arkanoid.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/arkanoid.cpp b/src/mame/video/arkanoid.cpp
index a7d2fdb62da..f85b0c9ee9f 100644
--- a/src/mame/video/arkanoid.cpp
+++ b/src/mame/video/arkanoid.cpp
@@ -59,7 +59,7 @@ WRITE8_MEMBER(arkanoid_state::arkanoid_d008_w)
leaving the tilt screen (as the MCU is now out of sync with main CPU
which resets itself). This bit is the likely candidate as it is flipped
early in bootup just prior to accessing the MCU for the first time. */
- if (m_mcu != NULL) // Bootlegs don't have the MCU but still set this bit
+ if (m_mcu != nullptr) // Bootlegs don't have the MCU but still set this bit
m_mcu->set_input_line(INPUT_LINE_RESET, (data & 0x80) ? CLEAR_LINE : ASSERT_LINE);
}