Illogic beats logic 1 to 0, fixed hangs/inputs in service mode

This commit is contained in:
Angelo Salese 2013-03-01 14:53:05 +00:00
parent 597b4a922e
commit 224dfa6660

View File

@ -647,7 +647,7 @@ void gunpey_state::palette_init()
/*:
0x01
0x04 blitter ready
0x10
0x10 vblank too?
0x40 almost certainly vblank (reads inputs)
0x80
*/
@ -655,11 +655,8 @@ TIMER_DEVICE_CALLBACK_MEMBER(gunpey_state::gunpey_scanline)
{
int scanline = param;
if(scanline == 0)
gunpey_irq_check(0x10);
if(scanline == 224)
gunpey_irq_check(0x40);
gunpey_irq_check(0x50);
}