mirror of https://github.com/PCSX2/pcsx2.git
GS-hw: Properly disable skipdraw when userhacks are disabled.
This commit is contained in:
parent
bf2613ee49
commit
e9f8e5eebd
|
@ -1083,7 +1083,7 @@ bool GSState::IsBadFrame()
|
|||
return false;
|
||||
}
|
||||
|
||||
if (m_skip == 0 && (GSConfig.SkipDraw > 0))
|
||||
if (m_skip == 0 && GSConfig.UserHacks && (GSConfig.SkipDraw > 0))
|
||||
{
|
||||
if (fi.TME)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue