summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/stratos.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/stratos.cpp')
-rw-r--r--src/mame/drivers/stratos.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/stratos.cpp b/src/mame/drivers/stratos.cpp
index 3af3d8ed6b8..733f62b979f 100644
--- a/src/mame/drivers/stratos.cpp
+++ b/src/mame/drivers/stratos.cpp
@@ -320,8 +320,8 @@ WRITE8_MEMBER(stratos_state::lcd_w)
idx++;
if(idx == 18*2) {
logerror("lcd");
- for(int i=0; i<18; i++)
- logerror(" %02x", vals[i]);
+ for(auto & val : vals)
+ logerror(" %02x", val);
logerror("\n");
}
}