From 169c0871c769e81632701a88cd4bd7fbf09658b5 Mon Sep 17 00:00:00 2001 From: byuu <2107894+byuu@users.noreply.github.com> Date: Fri, 27 Dec 2019 08:17:39 +0900 Subject: [PATCH] Added Super SWIV fast PPU override --- bsnes/emulator/emulator.hpp | 2 +- bsnes/target-bsnes/program/hacks.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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;