summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/bfm_dm01.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/bfm_dm01.cpp')
-rw-r--r--src/mame/video/bfm_dm01.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/video/bfm_dm01.cpp b/src/mame/video/bfm_dm01.cpp
index 4c9f8e31825..19911ee5654 100644
--- a/src/mame/video/bfm_dm01.cpp
+++ b/src/mame/video/bfm_dm01.cpp
@@ -62,11 +62,11 @@ bfmdm01_device::bfmdm01_device(const machine_config &mconfig, const char *tag, d
m_comdata(0),
m_busy_cb(*this)
{
- for (int i = 0; i < 65; i++)
- m_segbuffer[i] = 0;
+ for (auto & elem : m_segbuffer)
+ elem = 0;
- for (int i = 0; i < DM_BYTESPERROW; i++)
- m_scanline[i] = 0;
+ for (auto & elem : m_scanline)
+ elem = 0;
}
//-------------------------------------------------