GS/HW: Avoid doing round sprite on native scaled sources

This commit is contained in:
refractionpcsx2 2024-03-17 00:20:08 +00:00 committed by lightningterror
parent 3040ffae09
commit 6a278c46ab
1 changed files with 1 additions and 1 deletions

View File

@ -3374,7 +3374,7 @@ void GSRendererHW::Draw()
}
// Noting to do if no texture is sampled
if (PRIM->FST && draw_sprite_tex)
if (PRIM->FST && draw_sprite_tex && rt && rt->m_scale > 1)
{
if ((GSConfig.UserHacks_RoundSprite > 1) || (GSConfig.UserHacks_RoundSprite == 1 && !m_vt.IsLinear()))
{