Skip to content

Commit a3495ae

Browse files
GS/HW: Avoid doing round sprite on native scaled sources
1 parent f4357b5 commit a3495ae

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
@@ -4593,7 +4593,7 @@ void GSRendererHW::Draw()
45934593
}
45944594

45954595
// Noting to do if no texture is sampled
4596-
if (PRIM->FST && draw_sprite_tex && m_process_texture)
4596+
if (PRIM->FST && draw_sprite_tex && m_process_texture && rt && rt->m_scale > 1)
45974597
{
45984598
if ((GSConfig.UserHacks_RoundSprite > 1) || (GSConfig.UserHacks_RoundSprite == 1 && !m_vt.IsLinear()))
45994599
{

0 commit comments

Comments
 (0)