CRC/HW: remove god hand GSC

This commit is contained in:
Mrlinkwii 2023-08-09 11:21:04 +01:00 committed by Connor McLaughlin
parent c7cfea1daa
commit c89d023f91
2 changed files with 0 additions and 15 deletions

View File

@ -523,19 +523,6 @@ bool GSHwHack::GSC_SakuraWarsSoLongMyLove(GSRendererHW& r, int& skip)
return true; 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) bool GSHwHack::GSC_KnightsOfTheTemple2(GSRendererHW& r, int& skip)
{ {
if (skip == 0) if (skip == 0)
@ -1438,7 +1425,6 @@ bool GSHwHack::MV_Ico(GSRendererHW& r)
#define CRC_F(name) { #name, &GSHwHack::name } #define CRC_F(name) { #name, &GSHwHack::name }
const GSHwHack::Entry<GSRendererHW::GSC_Ptr> GSHwHack::s_get_skip_count_functions[] = { const GSHwHack::Entry<GSRendererHW::GSC_Ptr> GSHwHack::s_get_skip_count_functions[] = {
CRC_F(GSC_GodHand),
CRC_F(GSC_KnightsOfTheTemple2), CRC_F(GSC_KnightsOfTheTemple2),
CRC_F(GSC_Kunoichi), CRC_F(GSC_Kunoichi),
CRC_F(GSC_Manhunt2), CRC_F(GSC_Manhunt2),

View File

@ -32,7 +32,6 @@ public:
static bool GSC_Kunoichi(GSRendererHW& r, int& skip); static bool GSC_Kunoichi(GSRendererHW& r, int& skip);
static bool GSC_ZettaiZetsumeiToshi2(GSRendererHW& r, int& skip); static bool GSC_ZettaiZetsumeiToshi2(GSRendererHW& r, int& skip);
static bool GSC_SakuraWarsSoLongMyLove(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_KnightsOfTheTemple2(GSRendererHW& r, int& skip);
static bool GSC_UltramanFightingEvolution(GSRendererHW& r, int& skip); static bool GSC_UltramanFightingEvolution(GSRendererHW& r, int& skip);
static bool GSC_TalesofSymphonia(GSRendererHW& r, int& skip); static bool GSC_TalesofSymphonia(GSRendererHW& r, int& skip);