Skip to content

Commit 18ea6e8

Browse files
refractionpcsx2lightningterror
authored andcommitted
GS/HW: Avoid doing round sprite on native scaled sources
1 parent 8a3dc82 commit 18ea6e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pcsx2/GS/Renderers/HW/GSRendererHW.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3374,7 +3374,7 @@ void GSRendererHW::Draw()
33743374
}
33753375

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

0 commit comments

Comments
 (0)