From e598e81ab93290bbd18d6732699f15ba0fb036d3 Mon Sep 17 00:00:00 2001 From: byuu <2107894+byuu@users.noreply.github.com> Date: Sat, 5 Oct 2019 13:48:35 +0900 Subject: [PATCH] Add compatibility fixes to libretro target. --- bsnes/target-libretro/program.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/bsnes/target-libretro/program.cpp b/bsnes/target-libretro/program.cpp index cbfa4c37..35ce4ae2 100644 --- a/bsnes/target-libretro/program.cpp +++ b/bsnes/target-libretro/program.cpp @@ -149,6 +149,13 @@ auto Program::load() -> void { //fixes an errant scanline on the title screen due to writing to PPU registers too late if(title == "FIREPOWER 2000") emulator->configure("Hacks/PPU/RenderCycle", 32); + //fixes an errant scanline on the title screen due to writing to PPU registers too late + if(title == "NHL '94") emulator->configure("Hacks/PPU/RenderCycle", 32); + + if (emulator->configuration("Hacks/Hotfixes")) { + if (title == "The Hurricanes") emulator->configure("Hacks/Entropy", "None"); + } + emulator->power(); }