Skip to content

Commit bef813c

Browse files
refractionpcsx2lightningterror
authored andcommitted
GS/HW: Avoid doing round sprite on native scaled sources
1 parent 5f4d2b3 commit bef813c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pcsx2/GS/Renderers/HW/GSRendererHW.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3376,7 +3376,7 @@ void GSRendererHW::Draw()
33763376
}
33773377

33783378
// Noting to do if no texture is sampled
3379-
if (PRIM->FST && draw_sprite_tex)
3379+
if (PRIM->FST && draw_sprite_tex && rt && rt->m_scale > 1)
33803380
{
33813381
if ((GSConfig.UserHacks_RoundSprite > 1) || (GSConfig.UserHacks_RoundSprite == 1 && !m_vt.IsLinear()))
33823382
{

0 commit comments

Comments
 (0)