mirror of https://github.com/PCSX2/pcsx2.git
GSdx: Reduce some code checks for dbz bt hacks.
This commit is contained in:
parent
959d652dbb
commit
4da3f567f4
|
@ -71,9 +71,8 @@ bool GSC_DBZBT2(const GSFrameInfo& fi, int& skip)
|
|||
{
|
||||
skip = 5;
|
||||
}
|
||||
else
|
||||
else if(Dx_only)
|
||||
{
|
||||
if (Dx_only)
|
||||
skip = 4;
|
||||
}
|
||||
}
|
||||
|
@ -110,9 +109,8 @@ bool GSC_DBZBT3(const GSFrameInfo& fi, int& skip)
|
|||
{
|
||||
skip = 5;
|
||||
}
|
||||
else
|
||||
else if(Dx_only)
|
||||
{
|
||||
if(Dx_only)
|
||||
skip = 4;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue