GS-HW: Expand width on output read if DBX offset

This commit is contained in:
refractionpcsx2 2022-08-22 21:09:52 +01:00
parent 693790a19f
commit b74f91b868
1 changed files with 6 additions and 1 deletions

View File

@ -251,8 +251,13 @@ GSTexture* GSRendererHW::GetOutput(int i, int& y_offset)
// TRACE(_T("[%d] GetOutput %d %05x (%d)\n"), (int)m_perfmon.GetFrame(), i, (int)TEX0.TBP0, (int)TEX0.PSM);
GSTexture* t = nullptr;
GSVector2i size = GetOutputSize(fb_height);
if (GSTextureCache::Target* rt = m_tc->LookupDisplayTarget(TEX0, GetOutputSize(fb_height), fb_height))
// Expand read horizontally if offset in to the texture. (Causes visible stretching on FMVs otherwise)
if (DISPFB.DBX)
size.x += DISPFB.DBX;
if (GSTextureCache::Target* rt = m_tc->LookupDisplayTarget(TEX0, size, fb_height))
{
t = rt->m_texture;