add GameHBIRQHook2 in newppu (fixes mapper 90 [contra spirits {pirate}]) (fixes #783). Kind of a semi-wild guess but I think it has a fair chance at being right.
This commit is contained in:
parent
e1609b143c
commit
a85ba2a641
|
@ -2364,6 +2364,14 @@ int FCEUX_PPU_Loop(int skip) {
|
|||
}
|
||||
}
|
||||
|
||||
//blind attempt to replicate old ppu functionality
|
||||
if(s == 2 && PPUON)
|
||||
{
|
||||
if (GameHBIRQHook2) {
|
||||
GameHBIRQHook2();
|
||||
}
|
||||
}
|
||||
|
||||
if (realSprite) runppu(kFetchTime);
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue