mirror of
https://github.com/holub/mame
synced 2025-06-01 18:41:47 +03:00
adds in kludge logic but wrong values for Aero Fighters Special.
This commit is contained in:
parent
d7c33492f5
commit
1b8e64ff7d
@ -2566,6 +2566,17 @@ static INTERRUPT_GEN( coh1002v_vblank )
|
||||
psxwritebyte(0x0db423, 1);
|
||||
}
|
||||
}
|
||||
if(strcmp( machine->gamedrv->name, "aerofgts" ) == 0 ) /* These need to be corrected for this game */
|
||||
{
|
||||
if (psxreadbyte(0x0db422) == 0) /* WRONG!!!- Copied from sncwgltd */
|
||||
{
|
||||
psxwritebyte(0x0db422, 1); /* WRONG!!!- Copied from sncwgltd */
|
||||
}
|
||||
if (psxreadbyte(0x0db423) == 0) /* WRONG!!!- Copied from sncwgltd */
|
||||
{
|
||||
psxwritebyte(0x0db423, 1); /* WRONG!!!- Copied from sncwgltd */
|
||||
}
|
||||
}
|
||||
psx_vblank(machine, cpunum);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user