diff --git a/GPU/Common/FramebufferCommon.cpp b/GPU/Common/FramebufferCommon.cpp index cda9941175..8853b2a262 100644 --- a/GPU/Common/FramebufferCommon.cpp +++ b/GPU/Common/FramebufferCommon.cpp @@ -234,6 +234,10 @@ void FramebufferManagerCommon::EstimateDrawingSize(u32 fb_address, GEBufferForma drawing_width = scissor_width; drawing_height = std::max(drawing_height, scissor_height); } + if (scissor_width == 481 && region_width == 480 && scissor_height == 273 && region_height == 272) { + drawing_width = 480; + drawing_height = 272; + } } else { // If viewport wasn't valid, let's just take the greatest anything regardless of stride. drawing_width = std::min(std::max(region_width, scissor_width), fb_stride);