mirror of https://github.com/bsnes-emu/bsnes.git
Added Super SWIV fast PPU override
This commit is contained in:
parent
ffee61a1b1
commit
169c0871c7
|
@ -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";
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue