summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/psikyosh.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/psikyosh.cpp')
-rw-r--r--src/mame/video/psikyosh.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/psikyosh.cpp b/src/mame/video/psikyosh.cpp
index 0eb703853cd..24b51d9e375 100644
--- a/src/mame/video/psikyosh.cpp
+++ b/src/mame/video/psikyosh.cpp
@@ -260,7 +260,7 @@ void psikyosh_state::draw_bglayerscroll( int layer, bitmap_rgb32 &bitmap, const
/* cache rendered bitmap */
int last_bank[32]; // corresponds to bank of bitmap in m_bg_bitmap. bg_bitmap is split into 16/32-rows of one-tile high each
- for(int ii = 0; ii < 32; ii++) last_bank[ii] = -1;
+ for(auto & elem : last_bank) elem = -1;
int scr_width = cliprect.width();
int scr_height = cliprect.height();