mirror of
https://github.com/PCSX2/pcsx2.git
synced 2025-12-16 04:08:48 +00:00
GS/HW: Avoid doing round sprite on native scaled sources
This commit is contained in:
parent
f4357b5652
commit
a3495aea03
@ -4593,7 +4593,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 && m_process_texture)
|
if (PRIM->FST && draw_sprite_tex && m_process_texture && 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
Block a user