summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/kb3600.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/kb3600.cpp')
-rw-r--r--src/devices/machine/kb3600.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/kb3600.cpp b/src/devices/machine/kb3600.cpp
index f83ba9c46d8..ca5fb5e7e76 100644
--- a/src/devices/machine/kb3600.cpp
+++ b/src/devices/machine/kb3600.cpp
@@ -58,9 +58,9 @@ ay3600_device::ay3600_device(const machine_config &mconfig, const char *tag, dev
m_write_data_ready(*this),
m_write_ako(*this)
{
- for (int i = 0; i < 9; i++)
+ for (auto & elem : m_x_mask)
{
- m_x_mask[i] = 0;
+ elem = 0;
}
}