GS: Don't add overscan to offsets when looking up output texture.

This can cause mis-detection when Show Overscan is enabled, making it miss the target.
This commit is contained in:
refractionpcsx2 2022-11-10 01:20:26 +00:00
parent b922667fbd
commit 79c79b06ca
1 changed files with 1 additions and 1 deletions

View File

@ -239,7 +239,7 @@ GSTexture* GSRendererHW::GetOutput(int i, int& y_offset)
TEX0.PSM = DISPFB.PSM;
const int videomode = static_cast<int>(GetVideoMode()) - 1;
const GSVector4i offsets = !GSConfig.PCRTCOverscan ? VideoModeOffsets[videomode] : VideoModeOffsetsOverscan[videomode];
const GSVector4i offsets = VideoModeOffsets[videomode];
const int fb_width = std::min<int>(std::min<int>(GetFramebufferWidth(), DISPFB.FBW * 64) + (int)DISPFB.DBX, 2048);
const int display_height = offsets.y * ((isinterlaced() && !m_regs->SMODE2.FFMD) ? 2 : 1);