diff --git a/plugins/GSdx/GSCrc.cpp b/plugins/GSdx/GSCrc.cpp index 41bc0ccf83..e7e49ecbc0 100644 --- a/plugins/GSdx/GSCrc.cpp +++ b/plugins/GSdx/GSCrc.cpp @@ -378,7 +378,6 @@ CRC::Game CRC::m_games[] = {0x879CDA5E, StarWarsForceUnleashed, US, 0}, {0x137C792E, StarWarsForceUnleashed, US, 0}, {0xDAF2145C, StarWarsForceUnleashed, EU, 0}, - {0xA8DB29DF, BlackHawkDown, EU, 0}, {0x25FC361B, DevilMayCry3, US, 0}, // SE {0x2F7D8AD5, DevilMayCry3, US, 0}, {0x0BED0AF9, DevilMayCry3, US, 0}, diff --git a/plugins/GSdx/GSCrc.h b/plugins/GSdx/GSCrc.h index eeee3be68c..a5aba1fe0a 100644 --- a/plugins/GSdx/GSCrc.h +++ b/plugins/GSdx/GSCrc.h @@ -34,7 +34,6 @@ public: ArTonelico2, Barnyard, BigMuthaTruckers, - BlackHawkDown, BleachBladeBattlers, BrianLaraInternationalCricket, Bully, diff --git a/plugins/GSdx/Renderers/HW/GSHwHack.cpp b/plugins/GSdx/Renderers/HW/GSHwHack.cpp index 769ba1a5c5..33a92cd0eb 100644 --- a/plugins/GSdx/Renderers/HW/GSHwHack.cpp +++ b/plugins/GSdx/Renderers/HW/GSHwHack.cpp @@ -716,23 +716,6 @@ bool GSC_StarWarsForceUnleashed(const GSFrameInfo& fi, int& skip) return true; } -bool GSC_BlackHawkDown(const GSFrameInfo& fi, int& skip) -{ - if(skip == 0) - { - if(Dx_only && fi.TME && fi.FBP == 0x00800 && fi.FPSM == PSM_PSMCT16 && fi.TBP0 == 0x01800 && fi.TPSM == PSM_PSMZ16) - { - skip = 2; //wall of fog - } - if(fi.TME && fi.FBP == fi.TBP0 && fi.FPSM == PSM_PSMCT32 && fi.TPSM == PSM_PSMT8) - { - skip = 5; //night filter - } - } - - return true; -} - bool GSC_BurnoutGames(const GSFrameInfo& fi, int& skip) { if(skip == 0) @@ -1818,7 +1801,6 @@ void GSState::SetupCrcHack() if (Dx_and_OGL) { lut[CRC::AceCombat4] = GSC_AceCombat4; lut[CRC::BigMuthaTruckers] = GSC_BigMuthaTruckers; - lut[CRC::BlackHawkDown] = GSC_BlackHawkDown; lut[CRC::BurnoutDominator] = GSC_BurnoutGames; lut[CRC::BurnoutRevenge] = GSC_BurnoutGames; lut[CRC::BurnoutTakedown] = GSC_BurnoutGames;