From dc79c1277547c386e5c52044050985ae9f8cf40b Mon Sep 17 00:00:00 2001 From: Olivier Galibert Date: Mon, 9 Mar 2020 15:44:02 +0100 Subject: sharrier: Better protection simulation [Adrian Smethurst] --- src/mame/drivers/segahang.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mame/drivers/segahang.cpp b/src/mame/drivers/segahang.cpp index 2cad78ed3f5..c8f9890fad8 100644 --- a/src/mame/drivers/segahang.cpp +++ b/src/mame/drivers/segahang.cpp @@ -318,8 +318,8 @@ void segahang_state::sharrier_i8751_sim() // signal a VBLANK to the main CPU m_maincpu->set_input_line(4, HOLD_LINE); - // clear add lifes protection flag - m_workram[0x0f0/2] = 0; + // disable timer-based protection + m_workram[0x090/2] = 1; // read I/O ports m_workram[0x492/2] = (m_adc_ports[0]->read() << 8) | m_adc_ports[1]->read(); -- cgit v1.2.3