diff --git a/pcsx2/GS/Renderers/HW/GSHwHack.cpp b/pcsx2/GS/Renderers/HW/GSHwHack.cpp index 69f324a3ef..2d0a31cccc 100644 --- a/pcsx2/GS/Renderers/HW/GSHwHack.cpp +++ b/pcsx2/GS/Renderers/HW/GSHwHack.cpp @@ -523,19 +523,6 @@ bool GSHwHack::GSC_SakuraWarsSoLongMyLove(GSRendererHW& r, int& skip) return true; } -bool GSHwHack::GSC_GodHand(GSRendererHW& r, int& skip) -{ - if (skip == 0) - { - if (RTME && (RFBP == 0x0) && (RTBP0 == 0x2800) && RFPSM == RTPSM && RTPSM == PSMCT32) - { - skip = 1; // Blur - } - } - - return true; -} - bool GSHwHack::GSC_KnightsOfTheTemple2(GSRendererHW& r, int& skip) { if (skip == 0) @@ -1438,7 +1425,6 @@ bool GSHwHack::MV_Ico(GSRendererHW& r) #define CRC_F(name) { #name, &GSHwHack::name } const GSHwHack::Entry GSHwHack::s_get_skip_count_functions[] = { - CRC_F(GSC_GodHand), CRC_F(GSC_KnightsOfTheTemple2), CRC_F(GSC_Kunoichi), CRC_F(GSC_Manhunt2), diff --git a/pcsx2/GS/Renderers/HW/GSHwHack.h b/pcsx2/GS/Renderers/HW/GSHwHack.h index e25f31a990..ed44f7a756 100644 --- a/pcsx2/GS/Renderers/HW/GSHwHack.h +++ b/pcsx2/GS/Renderers/HW/GSHwHack.h @@ -32,7 +32,6 @@ public: static bool GSC_Kunoichi(GSRendererHW& r, int& skip); static bool GSC_ZettaiZetsumeiToshi2(GSRendererHW& r, int& skip); static bool GSC_SakuraWarsSoLongMyLove(GSRendererHW& r, int& skip); - static bool GSC_GodHand(GSRendererHW& r, int& skip); static bool GSC_KnightsOfTheTemple2(GSRendererHW& r, int& skip); static bool GSC_UltramanFightingEvolution(GSRendererHW& r, int& skip); static bool GSC_TalesofSymphonia(GSRendererHW& r, int& skip);