GS-hw: Remove Ikki Tousen crc hack.

Upscaling hack, upscaling fixes in gamedb will deal with it.
This commit is contained in:
lightningterror 2022-10-19 02:55:36 +02:00 committed by refractionpcsx2
parent e6dbd55644
commit f727561553
4 changed files with 1 additions and 19 deletions

View File

@ -162,7 +162,6 @@ const CRC::Game CRC::m_games[] =
{0x1F88BECD, Tekken5, EU, 0}, // language selector...
{0x652050D2, Tekken5, US, 0},
{0xEA64EF39, Tekken5, KO, 0},
{0x9E98B8AE, IkkiTousen, JP, 0},
{0x95CC86EF, GiTS, US, 0}, // same CRC also reported as EU
{0x2C5BF134, GiTS, US, 0}, // Demo
{0xA5768F53, GiTS, JP, 0},

View File

@ -40,7 +40,6 @@ public:
GodHand,
HauntingGround,
ICO,
IkkiTousen,
Jak2,
Jak3,
JakX,

View File

@ -202,21 +202,6 @@ bool GSC_Spartan(const GSFrameInfo& fi, int& skip) noexcept
return true;
}
bool GSC_IkkiTousen(const GSFrameInfo& fi, int& skip) noexcept
{
if (skip == 0)
{
if (!s_nativeres && fi.TME && fi.FBP == 0x00700 && fi.FPSM == PSM_PSMZ24 && fi.TBP0 == 0x01180 && fi.TPSM == PSM_PSMZ24)
{
// Might not be needed if any of the upscaling hacks fix the issues, needs to be further tested.
// Don't enable hack on native res if crc is below aggressive.
skip = 11; // Upscaling blur/ghosting
}
}
return true;
}
bool GSC_Oneechanbara2Special(const GSFrameInfo& fi, int& skip) noexcept
{
if (skip == 0)
@ -856,7 +841,6 @@ void GSState::SetupCrcHack() noexcept
// Upscaling hacks
lut[CRC::DBZBT3] = GSC_DBZBT3;
lut[CRC::FightingBeautyWulong] = GSC_FightingBeautyWulong;
lut[CRC::IkkiTousen] = GSC_IkkiTousen;
lut[CRC::Oneechanbara2Special] = GSC_Oneechanbara2Special;
lut[CRC::UltramanFightingEvolution] = GSC_UltramanFightingEvolution;
lut[CRC::YakuzaGames] = GSC_YakuzaGames;

View File

@ -54,7 +54,7 @@ const char* dialog_message(int ID, bool* updateText)
"Minimum:\nEnables CRC lookup for special post processing effects.\n\n"
"Aggressive:\nUse more aggressive CRC hacks.\n"
"Removes effects in some games which make the image appear sharper/clearer.\n"
"Affected games: AC4, BleachBB, Bully, DBZBT 2 & 3, DeathByDegrees, Evangelion, FF games, FightingBeautyWulong, GOW 1 & 2, Kunoichi, IkkiTousen, Okami, Oneechanbara2, OnimushaDoD, RDRevolver, Simple2000Vol114, SoTC, SteambotChronicles, Tekken5, Ultraman, XenosagaE3, Yakuza 1 & 2.\n");
"Affected games: AC4, DBZBT 2 & 3, DeathByDegrees, Evangelion, FF games, FightingBeautyWulong, Kunoichi, Okami, Oneechanbara2, OnimushaDoD, RDRevolver, Simple2000Vol114, SteambotChronicles, Tekken5, Ultraman, XenosagaE3, Yakuza 1 & 2.\n");
case IDC_SKIPDRAWEND:
case IDC_SKIPDRAWHACKEDIT:
case IDC_SKIPDRAWSTART: