summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/ti99x/998board.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/ti99x/998board.cpp')
-rw-r--r--src/devices/bus/ti99x/998board.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/ti99x/998board.cpp b/src/devices/bus/ti99x/998board.cpp
index 540e995b417..d59313bc57c 100644
--- a/src/devices/bus/ti99x/998board.cpp
+++ b/src/devices/bus/ti99x/998board.cpp
@@ -761,7 +761,7 @@ void mainboard8_device::device_start()
m_PTGE = false;
// Clean mapper
- for (int i=0; i < 16; i++) m_pas_offset[i] = 0;
+ for (auto & elem : m_pas_offset) elem = 0;
}
void mainboard8_device::device_reset()
@@ -773,7 +773,7 @@ void mainboard8_device::device_reset()
m_hexbus_selected = false;
// Clean mapper
- for (int i=0; i < 16; i++) m_pas_offset[i] = 0;
+ for (auto & elem : m_pas_offset) elem = 0;
m_ready(ASSERT_LINE);
}