summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/ldv1000.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/ldv1000.cpp')
-rw-r--r--src/devices/machine/ldv1000.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/ldv1000.cpp b/src/devices/machine/ldv1000.cpp
index 8d94650e9db..934633e4b5a 100644
--- a/src/devices/machine/ldv1000.cpp
+++ b/src/devices/machine/ldv1000.cpp
@@ -392,7 +392,7 @@ uint8_t pioneer_ldv1000_device::z80_decoder_display_port_r(offs_t offset)
if (m_portselect == 4)
{
m_vbiready = false;
- result = m_vbi[m_vbiindex++ % ARRAY_LENGTH(m_vbi)];
+ result = m_vbi[m_vbiindex++ % std::size(m_vbi)];
}
}
return result;