mirror of https://github.com/PCSX2/pcsx2.git
GS/HW: Avoid doing round sprite on native scaled sources
This commit is contained in:
parent
3040ffae09
commit
6a278c46ab
|
@ -3374,7 +3374,7 @@ void GSRendererHW::Draw()
|
||||||
}
|
}
|
||||||
|
|
||||||
// Noting to do if no texture is sampled
|
// 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()))
|
if ((GSConfig.UserHacks_RoundSprite > 1) || (GSConfig.UserHacks_RoundSprite == 1 && !m_vt.IsLinear()))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue