GS: Loosen requirement for half bottom

This commit is contained in:
refractionpcsx2 2022-03-14 18:28:08 +00:00
parent 910c8190e0
commit e01fc3eb47
1 changed files with 2 additions and 2 deletions

View File

@ -520,8 +520,8 @@ void GSRendererHW::ConvertSpriteTextureShuffle(bool& write_ba, bool& read_ba)
if (minvert > YCord)
minvert = YCord;
}
// Check if it's a full screen blit (or at least half screen), ignore small writes.
half_bottom = minvert == 0 && m_r.height() <= maxvert && (m_r.height()+1) >= 224;
half_bottom = minvert == 0 && m_r.height() <= maxvert;
break;
}