Skip to content

Commit a30799a

Browse files
GS/HW: Avoid doing round sprite on native scaled sources
1 parent 25bb68c commit a30799a

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
@@ -4732,7 +4732,7 @@ void GSRendererHW::Draw()
47324732
}
47334733

47344734
// Noting to do if no texture is sampled
4735-
if (PRIM->FST && draw_sprite_tex && m_process_texture)
4735+
if (PRIM->FST && draw_sprite_tex && m_process_texture && rt && rt->m_scale > 1)
47364736
{
47374737
if ((GSConfig.UserHacks_RoundSprite > 1) || (GSConfig.UserHacks_RoundSprite == 1 && !m_vt.IsLinear()))
47384738
{

0 commit comments

Comments
 (0)