Added Super SWIV fast PPU override

This commit is contained in:
byuu 2019-12-27 08:17:39 +09:00
parent ffee61a1b1
commit 169c0871c7
2 changed files with 2 additions and 2 deletions

View File

@ -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";

View File

@ -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;