summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame
diff options
context:
space:
mode:
author Olivier Galibert <olivier.galibert@lne.fr>2020-03-09 15:44:02 +0100
committer Olivier Galibert <galibert@pobox.com>2020-03-09 15:24:12 +0100
commitdc79c1277547c386e5c52044050985ae9f8cf40b (patch)
tree5487a161ae455610013dccca98972c046dcd3f6d /src/mame
parentfcc6204cdcee59b47c04d95c66925e99c879fa24 (diff)
sharrier: Better protection simulation [Adrian Smethurst]
Diffstat (limited to 'src/mame')
-rw-r--r--src/mame/drivers/segahang.cpp4
1 files 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();