GS-HW: Adjust Yakuza CRC hack to remove weird shadow

This commit is contained in:
refractionpcsx2 2022-12-26 03:13:22 +00:00
parent 3cfc4cd5be
commit 8abe5b42e5
1 changed files with 3 additions and 1 deletions

View File

@ -618,7 +618,9 @@ bool GSC_YakuzaGames(const GSFrameInfo& fi, int& skip) noexcept
{
// Don't enable hack on native res if crc is below aggressive.
// Upscaling issues, removes glow/blur effect which fixes ghosting.
skip = 3;
// Skip 3 removes most of the post effect which doesn't upscale well, but causes a depth effect to completely mess up.
// Skip 9 removes both the depth and blur effect, which seems to work okay.
skip = 9;
}
}