From 0cda6629387b15737847be7df240e212ee1607b4 Mon Sep 17 00:00:00 2001 From: MooglyGuy Date: Fri, 6 Jan 2023 03:44:12 +0100 Subject: -sun/sun4,cpp: Fixed array-bounds oversight. (#10794) [Ryan Holtz] --- src/mame/sun/sun4.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mame/sun/sun4.cpp b/src/mame/sun/sun4.cpp index 3a1fc01c5b1..0791955f03d 100644 --- a/src/mame/sun/sun4.cpp +++ b/src/mame/sun/sun4.cpp @@ -921,8 +921,8 @@ void sun4_base_state::machine_reset() m_timer_count[0] = 0; m_timer_count[1] = 0; - m_timer_limit[2] = 0; - m_timer_limit[3] = 0; + m_timer_limit[0] = 0; + m_timer_limit[1] = 0; m_dma_ctrl = 0; m_dma_addr = 0; -- cgit v1.2.3