Add compatibility fixes to libretro target.

This commit is contained in:
byuu 2019-10-05 13:48:35 +09:00
parent d37fb1c12e
commit e598e81ab9
1 changed files with 7 additions and 0 deletions

View File

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