mirror of https://github.com/bsnes-emu/bsnes.git
Add compatibility fixes to libretro target.
This commit is contained in:
parent
d37fb1c12e
commit
e598e81ab9
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue