Skip to content

Commit

Permalink
GSdx: Purge a crc hacks for GSC_Onimusha3.
Browse files Browse the repository at this point in the history
Hack removed depth effects which are rendered properly. I wasn't able to
trigger a skip on the other hack draw calls, they need to be
investigated further what they actually did.
  • Loading branch information
lightningterror committed Dec 29, 2018
1 parent 01c64f1 commit 781323f
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions plugins/GSdx/Renderers/HW/GSHwHack.cpp
Expand Up @@ -312,9 +312,6 @@ bool GSC_Onimusha3(const GSFrameInfo& fi, int& skip)

bool GSC_Genji(const GSFrameInfo& fi, int& skip)
{
if( !skip && fi.TME && (fi.FBP == 0x700 || fi.FBP == 0x0) && fi.TBP0 == 0x1500 && fi.TPSM )
skip=1;

if(skip == 0)
{
if(fi.TME && fi.FBP == 0x01500 && fi.FPSM == PSM_PSMCT16 && fi.TBP0 == 0x00e00 && fi.TPSM == PSM_PSMZ16)
Expand Down

1 comment on commit 781323f

@lightningterror
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Typo, the hack is for GSC_Genji and not GSC_Onimusha3. Bad copy paste.

Please sign in to comment.