We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c314f82 commit 6e733f5Copy full SHA for 6e733f5
src/mame/gottlieb/gottlieb.cpp
@@ -426,9 +426,12 @@ void gottlieb_state::machine_start()
426
427
void gottlieb_state::machine_reset()
428
{
429
- /* if we have a laserdisc, reset our philips code callback for the next line 17 */
+ // if we have a laserdisc, reset our philips code callback for the next line 17
430
if (m_laserdisc != nullptr)
431
m_laserdisc_philips_timer->adjust(m_screen->time_until_pos(17), 17);
432
+
433
+ // HACK: prevent NMI immediately after soft reset
434
+ m_maincpu->pulse_input_line(INPUT_LINE_RESET, attotime::zero);
435
}
436
437
0 commit comments