Skip to content

Commit

Permalink
GSHwHack: Purge The Getaway CRC
Browse files Browse the repository at this point in the history
No longer needed as the fog wall does not appear on basic blending.
  • Loading branch information
JordanTheToaster committed Apr 10, 2024
1 parent ddb9612 commit 228d272
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 19 deletions.
18 changes: 0 additions & 18 deletions pcsx2/GS/Renderers/HW/GSHwHack.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -581,22 +581,6 @@ bool GSHwHack::GSC_SteambotChronicles(GSRendererHW& r, int& skip)
return true;
}

bool GSHwHack::GSC_GetawayGames(GSRendererHW& r, int& skip)
{
if (GSConfig.AccurateBlendingUnit >= AccBlendLevel::High)
return true;

if (skip == 0)
{
if ((RFBP == 0 || RFBP == 0x1180 || RFBP == 0x1400) && RTPSM == PSMT8H && RFBMSK == 0)
{
skip = 1; // Removes fog wall.
}
}

return true;
}

bool GSHwHack::GSC_NFSUndercover(GSRendererHW& r, int& skip)
{
// NFS Undercover does a weird texture shuffle by page, which really isn't supported by our TC.
Expand Down Expand Up @@ -1502,8 +1486,6 @@ const GSHwHack::Entry<GSRendererHW::GSC_Ptr> GSHwHack::s_get_skip_count_function
// Upscaling hacks
CRC_F(GSC_UltramanFightingEvolution),

// Accurate Blending
CRC_F(GSC_GetawayGames),
};

const GSHwHack::Entry<GSRendererHW::OI_Ptr> GSHwHack::s_before_draw_functions[] = {
Expand Down
1 change: 0 additions & 1 deletion pcsx2/GS/Renderers/HW/GSHwHack.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ class GSHwHack
static bool GSC_Simple2000Vol114(GSRendererHW& r, int& skip);
static bool GSC_UrbanReign(GSRendererHW& r, int& skip);
static bool GSC_SteambotChronicles(GSRendererHW& r, int& skip);
static bool GSC_GetawayGames(GSRendererHW& r, int& skip);
static bool GSC_BlueTongueGames(GSRendererHW& r, int& skip);
static bool GSC_Battlefield2(GSRendererHW& r, int& skip);
static bool GSC_NFSUndercover(GSRendererHW& r, int& skip);
Expand Down

0 comments on commit 228d272

Please sign in to comment.