Attempted compile fix (nw)

This commit is contained in:
Scott Stone 2018-03-24 04:48:05 -04:00
parent 4b213064d4
commit b891c4b27b

View File

@ -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));