mirror of
https://github.com/holub/mame
synced 2025-04-24 09:20:02 +03:00
rotaryf: different fix for coincounter at boot (nw)
This commit is contained in:
parent
7d48540c6b
commit
6034a9cbd3
@ -123,9 +123,6 @@ WRITE8_MEMBER(rotaryf_state::porta_w)
|
||||
|
||||
WRITE8_MEMBER(rotaryf_state::portc_w)
|
||||
{
|
||||
if (data == 0xff)
|
||||
return;
|
||||
|
||||
machine().bookkeeping().coin_counter_w(0, BIT(data, 1));
|
||||
|
||||
// bit 5 set when game starts, but isn't coin lockout?
|
||||
@ -275,7 +272,7 @@ void rotaryf_state::rotaryf(machine_config &config)
|
||||
ppi.out_pa_callback().set(FUNC(rotaryf_state::porta_w));
|
||||
ppi.in_pb_callback().set(FUNC(rotaryf_state::portb_r));
|
||||
ppi.out_pc_callback().set(FUNC(rotaryf_state::portc_w));
|
||||
//ppi.tri_pc_callback().set_constant(0);
|
||||
ppi.tri_pc_callback().set_constant(0);
|
||||
|
||||
/* video hardware */
|
||||
screen_device &screen(SCREEN(config, "screen", SCREEN_TYPE_RASTER));
|
||||
|
Loading…
Reference in New Issue
Block a user