From e8576860da2710d06b478a185386b39153339ffe Mon Sep 17 00:00:00 2001 From: Robbbert Date: Thu, 5 Apr 2018 12:20:31 +1000 Subject: (nw) fixed regression --- src/mame/drivers/g627.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/drivers/g627.cpp b/src/mame/drivers/g627.cpp index 00b7fbfb6fe..6bdf1ffaf1e 100644 --- a/src/mame/drivers/g627.cpp +++ b/src/mame/drivers/g627.cpp @@ -224,7 +224,7 @@ WRITE8_MEMBER( g627_state::portc_w ) m_digits[50 + data] = m_seg[5]; } else - if ((!m_type) && (data)) + if ((!m_type) && (data) && (data < 7)) { data--; -- cgit v1.2.3