From b891c4b27b3496e66b129e8f476f89da4dc33684 Mon Sep 17 00:00:00 2001 From: Scott Stone Date: Sat, 24 Mar 2018 04:48:05 -0400 Subject: Attempted compile fix (nw) --- src/mame/drivers/piggypas.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/drivers/piggypas.cpp b/src/mame/drivers/piggypas.cpp index f3a31765250..c97ec9840fa 100644 --- a/src/mame/drivers/piggypas.cpp +++ b/src/mame/drivers/piggypas.cpp @@ -73,7 +73,7 @@ void piggypas_state::output_digits() WRITE8_MEMBER(piggypas_state::ctrl_w) { - if (!BIT(data, 2) & BIT(m_ctrl, 2)) + if (!BIT(data, 2) && BIT(m_ctrl, 2)) output_digits(); m_ticket->motor_w(BIT(data, 6)); -- cgit v1.2.3