summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/ti99_peb/memex.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/ti99_peb/memex.cpp')
-rw-r--r--src/devices/bus/ti99_peb/memex.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/ti99_peb/memex.cpp b/src/devices/bus/ti99_peb/memex.cpp
index 21ddf1a860a..4f1bbd56a0f 100644
--- a/src/devices/bus/ti99_peb/memex.cpp
+++ b/src/devices/bus/ti99_peb/memex.cpp
@@ -125,9 +125,9 @@ void geneve_memex_device::device_reset()
{
UINT8 dips = ioport("MEMEXDIPS")->read();
if (VERBOSE>5) LOG("geneve: memex dips = %02x\n", dips);
- for (int i=0; i < 8; i++)
+ for (auto & elem : m_dip_switch)
{
- m_dip_switch[i] = ((dips & 0x01)!=0x00);
+ elem = ((dips & 0x01)!=0x00);
dips = dips >> 1;
}
}