From 03764a624fb6b1f99209cd0ecdda1760c527009f Mon Sep 17 00:00:00 2001 From: Mrlinkwii Date: Fri, 3 Mar 2023 13:32:14 +0000 Subject: [PATCH] GS/CRC: purge Oneechanbara2Special CRC --- pcsx2/GS/Renderers/HW/GSHwHack.cpp | 16 ---------------- pcsx2/GS/Renderers/HW/GSHwHack.h | 1 - 2 files changed, 17 deletions(-) diff --git a/pcsx2/GS/Renderers/HW/GSHwHack.cpp b/pcsx2/GS/Renderers/HW/GSHwHack.cpp index 413291d11b..dca73f06d8 100644 --- a/pcsx2/GS/Renderers/HW/GSHwHack.cpp +++ b/pcsx2/GS/Renderers/HW/GSHwHack.cpp @@ -170,21 +170,6 @@ bool GSHwHack::GSC_SacredBlaze(GSRendererHW& r, const GSFrameInfo& fi, int& skip return true; } -bool GSHwHack::GSC_Oneechanbara2Special(GSRendererHW& r, const GSFrameInfo& fi, int& skip) -{ - if (skip == 0) - { - if (!s_nativeres && fi.TPSM == PSM_PSMCT24 && fi.TME && fi.FBP == 0x01180) - { - // Don't enable hack on native res if crc is below aggressive. - // Ghosting upscaling issue, bottom and right red lines also by upscaling. - skip = 1; - } - } - - return true; -} - bool GSHwHack::GSC_SakuraTaisen(GSRendererHW& r, const GSFrameInfo& fi, int& skip) { if (skip == 0) @@ -1237,7 +1222,6 @@ const GSHwHack::Entry GSHwHack::s_get_skip_count_function CRC_F(GSC_DeathByDegreesTekkenNinaWilliams, CRCHackLevel::Partial), // + Upscaling issues // Upscaling hacks - CRC_F(GSC_Oneechanbara2Special, CRCHackLevel::Partial), CRC_F(GSC_UltramanFightingEvolution, CRCHackLevel::Partial), CRC_F(GSC_YakuzaGames, CRCHackLevel::Partial), diff --git a/pcsx2/GS/Renderers/HW/GSHwHack.h b/pcsx2/GS/Renderers/HW/GSHwHack.h index f2c4739b8e..943e24841b 100644 --- a/pcsx2/GS/Renderers/HW/GSHwHack.h +++ b/pcsx2/GS/Renderers/HW/GSHwHack.h @@ -24,7 +24,6 @@ public: static bool GSC_Manhunt2(GSRendererHW& r, const GSFrameInfo& fi, int& skip); static bool GSC_CrashBandicootWoC(GSRendererHW& r, const GSFrameInfo& fi, int& skip); static bool GSC_SacredBlaze(GSRendererHW& r, const GSFrameInfo& fi, int& skip); - static bool GSC_Oneechanbara2Special(GSRendererHW& r, const GSFrameInfo& fi, int& skip); static bool GSC_SakuraTaisen(GSRendererHW& r, const GSFrameInfo& fi, int& skip); static bool GSC_SFEX3(GSRendererHW& r, const GSFrameInfo& fi, int& skip); static bool GSC_Tekken5(GSRendererHW& r, const GSFrameInfo& fi, int& skip);