segahang.cpp: Fixed sharrier/enduror music playing after highscore entry [cmonkey, smarty, dj_yt]

This commit is contained in:
hap 2020-03-01 00:49:32 +01:00
parent f609016c3a
commit 71591320a8

View File

@ -52,6 +52,7 @@ WRITE8_MEMBER( segahang_state::video_lamps_w )
//
// D7 : FLIPC (1= flip screen, 0= normal orientation)
// D6 : SHADE0 (1= highlight, 0= shadow)
// D5 : Z80 /RESET
// D4 : /KILL (1= screen on, 0= screen off)
// D3 : LAMP2
// D2 : LAMP1
@ -66,6 +67,9 @@ WRITE8_MEMBER( segahang_state::video_lamps_w )
// bit 6: shadow/highlight control
m_shadow = ~data & 0x40;
// bit 5: Z80 RESET line
m_soundcpu->set_input_line(INPUT_LINE_RESET, (data & 0x20) ? CLEAR_LINE : ASSERT_LINE);
// bit 4: enable display
m_segaic16vid->set_display_enable(data & 0x10);