Skip to content

Commit 43f718e

Browse files
GS/HW: Avoid doing round sprite on native scaled sources
1 parent 7580187 commit 43f718e

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
@@ -3517,7 +3517,7 @@ void GSRendererHW::Draw()
35173517
}
35183518

35193519
// Noting to do if no texture is sampled
3520-
if (PRIM->FST && draw_sprite_tex)
3520+
if (PRIM->FST && draw_sprite_tex && rt && rt->m_scale > 1)
35213521
{
35223522
if ((GSConfig.UserHacks_RoundSprite > 1) || (GSConfig.UserHacks_RoundSprite == 1 && !m_vt.IsLinear()))
35233523
{

0 commit comments

Comments
 (0)