From 7f0111b02265dbd762364e9995cd1980a0d5fadd Mon Sep 17 00:00:00 2001 From: Stenzek Date: Thu, 28 Feb 2019 20:11:46 +1000 Subject: [PATCH] TextureCache: Fix EFB2RAM copies at >1xIR sampling out-of-range --- Source/Core/VideoCommon/TextureCacheBase.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/VideoCommon/TextureCacheBase.cpp b/Source/Core/VideoCommon/TextureCacheBase.cpp index 3beaeedbf8..2e57aa2dc5 100644 --- a/Source/Core/VideoCommon/TextureCacheBase.cpp +++ b/Source/Core/VideoCommon/TextureCacheBase.cpp @@ -2389,8 +2389,8 @@ void TextureCacheBase::CopyEFB(AbstractStagingTexture* dst, const EFBCopyParams& const auto framebuffer_rect = g_renderer->ConvertFramebufferRectangle( scaled_src_rect, g_framebuffer_manager->GetEFBFramebuffer()); const float rcp_efb_height = 1.0f / static_cast(g_framebuffer_manager->GetEFBHeight()); - encoder_params.position_uniform[0] = scaled_src_rect.left; - encoder_params.position_uniform[1] = scaled_src_rect.top; + encoder_params.position_uniform[0] = src_rect.left; + encoder_params.position_uniform[1] = src_rect.top; encoder_params.position_uniform[2] = static_cast(native_width); encoder_params.position_uniform[3] = scale_by_half ? 2 : 1; encoder_params.y_scale = y_scale;