diff --git a/bsnes/emulator/emulator.hpp b/bsnes/emulator/emulator.hpp index 3aae67f6..d65f3b71 100644 --- a/bsnes/emulator/emulator.hpp +++ b/bsnes/emulator/emulator.hpp @@ -29,7 +29,7 @@ using namespace nall; namespace Emulator { static const string Name = "bsnes"; - static const string Version = "113.1"; + static const string Version = "113.2"; static const string Author = "byuu"; static const string License = "GPLv3"; static const string Website = "https://byuu.org"; diff --git a/bsnes/target-bsnes/program/hacks.cpp b/bsnes/target-bsnes/program/hacks.cpp index fffa0e31..dbe238ba 100644 --- a/bsnes/target-bsnes/program/hacks.cpp +++ b/bsnes/target-bsnes/program/hacks.cpp @@ -28,7 +28,7 @@ auto Program::hackCompatibility() -> void { if(title == "ADVENTURES OF FRANKEN" && region == "PAL") renderCycle = 32; //fixes an errant scanline on the title screen due to writing to PPU registers too late - if(title == "FIREPOWER 2000") renderCycle = 32; + if(title == "FIREPOWER 2000" || title == "SUPER SWIV") renderCycle = 32; //fixes an errant scanline on the title screen due to writing to PPU registers too late if(title == "NHL '94" || title == "NHL PROHOCKEY'94") renderCycle = 32;