mirror of https://github.com/PCSX2/pcsx2.git
GS:HW: Fix scale of color → 8 bit converted textures
This commit is contained in:
parent
b8188a7954
commit
977e8a4c54
|
@ -1344,7 +1344,7 @@ GSTextureCache::Source* GSTextureCache::CreateSource(const GIFRegTEX0& TEX0, con
|
||||||
}
|
}
|
||||||
// width/height conversion
|
// width/height conversion
|
||||||
|
|
||||||
GSVector2 scale = dst->m_texture->GetScale();
|
GSVector2 scale = is_8bits ? GSVector2(1, 1) : dst->m_texture->GetScale();
|
||||||
|
|
||||||
GSVector4i sRect(0, 0, w, h);
|
GSVector4i sRect(0, 0, w, h);
|
||||||
const bool use_texture = shader == ShaderConvert::COPY;
|
const bool use_texture = shader == ShaderConvert::COPY;
|
||||||
|
|
Loading…
Reference in New Issue