Bubsy II (PAL) fix.

This commit is contained in:
byuu 2019-08-26 01:37:24 +09:00
parent ce3dba130c
commit 5dc27a9fb3
1 changed files with 4 additions and 1 deletions

View File

@ -14,9 +14,12 @@ auto Program::hackCompatibility() -> void {
//relies on cycle-accurate writes to the echo buffer
if(title == "KOUSHIEN_2") fastDSP = false;
//extremely timing sensitive
//will hang immediately
if(title == "RENDERING RANGER R2") fastDSP = false;
//will hang sometimes in the "Bach in Time" stage
if(title == "BUBSY II" && region == "PAL") fastDSP = false;
//fixes an errant scanline on the title screen due to writing to PPU registers too late
if(title == "ADVENTURES OF FRANKEN" && region == "PAL") renderCycle = 32;