Previous 199869 Revisions Next

r19715 Friday 21st December, 2012 at 12:51:00 UTC by hap
fix coin timing regression (MT 5086)
[src/mame/drivers]vicdual.c

trunk/src/mame/drivers/vicdual.c
r19714r19715
9999/* the main CPU is reset when a coin is inserted */
100100void vicdual_state::coin_in()
101101{
102      m_maincpu->set_input_line(INPUT_LINE_RESET, PULSE_LINE);
102   m_maincpu->set_input_line(INPUT_LINE_RESET, PULSE_LINE);
103103
104      /* simulate the coin switch being closed for a while */
105      m_coinstate_timer->adjust(attotime::from_msec(50));
104   /* simulate the coin switch being closed for a while */
105   m_coinstate_timer->adjust(attotime::from_msec(70));
106106}
107107
108108INPUT_CHANGED_MEMBER(vicdual_state::coin_changed)

Previous 199869 Revisions Next


© 1997-2024 The MAME Team