From 7bf920b07cf5b27cf5dba85073918fba4f3a7970 Mon Sep 17 00:00:00 2001 From: lightningterror Date: Fri, 11 Oct 2019 21:04:20 +0200 Subject: [PATCH] gsdx-hw: Purge impact screen crc hack for Burnout Revenge. Effect is properly rendered with depth emulation, so far only Burnout Revenge triggered the crc hack from my testing. Triggering the draw is done when the player car crashes. --- plugins/GSdx/Renderers/HW/GSHwHack.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/plugins/GSdx/Renderers/HW/GSHwHack.cpp b/plugins/GSdx/Renderers/HW/GSHwHack.cpp index 78adbb15f6..d79f224ce0 100644 --- a/plugins/GSdx/Renderers/HW/GSHwHack.cpp +++ b/plugins/GSdx/Renderers/HW/GSHwHack.cpp @@ -605,10 +605,6 @@ bool GSC_BurnoutGames(const GSFrameInfo& fi, int& skip) // Multiplayer tested only on Takedown. skip = 4; } - else if (fi.TME && (fi.FBP == 0x02d60 || fi.FBP == 0x033a0) && fi.FPSM == fi.TPSM && (fi.TBP0 == 0x02d60 || fi.TBP0 == 0x033a0) && fi.TPSM == PSM_PSMCT32 && fi.FBMSK == 0x0) - { - skip = 2; // impact screen - } } return true;