diff --git a/src/mame/atari/copsnrob_v.cpp b/src/mame/atari/copsnrob_v.cpp index 7f147a4a45d..e99577b4acf 100644 --- a/src/mame/atari/copsnrob_v.cpp +++ b/src/mame/atari/copsnrob_v.cpp @@ -13,8 +13,7 @@ uint32_t copsnrob_state::screen_update_copsnrob(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect) { /* redrawing the entire display is faster in this case */ - - for (int offs = m_videoram.bytes(); offs >= 0; offs--) + for (int offs = 0; offs < m_videoram.bytes(); offs++) { int const sx = 31 - (offs % 32); int const sy = offs / 32;