From 5dc27a9fb373c12fc65a76f397986441af5540f0 Mon Sep 17 00:00:00 2001 From: byuu <2107894+byuu@users.noreply.github.com> Date: Mon, 26 Aug 2019 01:37:24 +0900 Subject: [PATCH] Bubsy II (PAL) fix. --- bsnes/target-bsnes/program/hacks.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bsnes/target-bsnes/program/hacks.cpp b/bsnes/target-bsnes/program/hacks.cpp index 6f271926..d99e50fa 100644 --- a/bsnes/target-bsnes/program/hacks.cpp +++ b/bsnes/target-bsnes/program/hacks.cpp @@ -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;