Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GS/HW: Avoid doing round sprite on native scaled sources
Browse files Browse the repository at this point in the history
refractionpcsx2 committed Mar 17, 2024
1 parent 5298e6a commit 800c849
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pcsx2/GS/Renderers/HW/GSRendererHW.cpp
Original file line number Diff line number Diff line change
@@ -3074,7 +3074,7 @@ void GSRendererHW::Draw()
}

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

0 comments on commit 800c849

Please sign in to comment.