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(); }