summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/audio/trackfld.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/audio/trackfld.cpp')
-rw-r--r--src/mame/audio/trackfld.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/audio/trackfld.cpp b/src/mame/audio/trackfld.cpp
index b73a5d708fe..6f78f861712 100644
--- a/src/mame/audio/trackfld.cpp
+++ b/src/mame/audio/trackfld.cpp
@@ -101,7 +101,7 @@ READ8_MEMBER( trackfld_audio_device::hyperspt_sh_timer_r )
{
UINT32 clock = m_audiocpu->total_cycles() / TIMER_RATE;
- if (m_vlm != NULL)
+ if (m_vlm != nullptr)
return (clock & 0x3) | (m_vlm->bsy() ? 0x04 : 0);
else
return (clock & 0x3);