GSdx: Removed Rogue Galaxy from the GSdx crc hacks. Fixes issue 1290.

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@5275 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
ramapcsx2 2012-06-07 11:53:53 +00:00
parent c7b1423a83
commit a74b8e2c7f
3 changed files with 0 additions and 19 deletions

View File

@ -472,9 +472,6 @@ CRC::Game CRC::m_games[] =
{0x924C4AA6, GodHand, KO, 0},
{0x9637D496, KnightsOfTheTemple2, JP, 0}, //聖堂騎士團2
{0x4E811100, UltramanFightingEvolution, JP, 0}, //超能力霸王戰鬥進化重生
{0x0643F90C, RogueGalaxy, US, 0}, //«Lµs»Èªe
{0xCDEE4B19, RogueGalaxy, JP, 0},
{0xCBB4B383, RogueGalaxy, EU, 0},
{0xF7F181C3, DeathByDegreesTekkenNinaWilliams, CH, 0}, //鐵拳妮娜
{0xF088FA5B, DeathByDegreesTekkenNinaWilliams, KO, 0},
{0x59683BB0, DeathByDegreesTekkenNinaWilliams, EU, 0},

View File

@ -160,7 +160,6 @@ public:
GodHand,
KnightsOfTheTemple2,
UltramanFightingEvolution,
RogueGalaxy,
DeathByDegreesTekkenNinaWilliams,
AlpineRacer3,
HummerBadlands,

View File

@ -4853,20 +4853,6 @@ bool GSC_UltramanFightingEvolution(const GSFrameInfo& fi, int& skip)
return true;
}
bool GSC_RogueGalaxy(const GSFrameInfo& fi, int& skip)
{
if(skip == 0)
{
if(fi.TME && (fi.TBP0==0x2c40) && (fi.TPSM == PSM_PSMCT32 || fi.TPSM == PSM_PSMCT24))
{
skip = 1; //³õ´º°{Ã{
}
}
return true;
}
bool GSC_DeathByDegreesTekkenNinaWilliams(const GSFrameInfo& fi, int& skip)
{
if(skip == 0)
@ -5298,7 +5284,6 @@ bool GSState::IsBadFrame(int& skip, int UserHacks_SkipDraw)
map[CRC::GodHand] = GSC_GodHand;
map[CRC::KnightsOfTheTemple2] = GSC_KnightsOfTheTemple2;
map[CRC::UltramanFightingEvolution] = GSC_UltramanFightingEvolution;
map[CRC::RogueGalaxy] = GSC_RogueGalaxy;
map[CRC::DeathByDegreesTekkenNinaWilliams] = GSC_DeathByDegreesTekkenNinaWilliams;
map[CRC::AlpineRacer3] = GSC_AlpineRacer3;
map[CRC::HummerBadlands] = GSC_HummerBadlands;