diff --git a/src/core/gpu_hw.cpp b/src/core/gpu_hw.cpp index be75c9824..7248d9924 100644 --- a/src/core/gpu_hw.cpp +++ b/src/core/gpu_hw.cpp @@ -2782,7 +2782,7 @@ void GPU_HW::DrawSprite(const GPUBackendDrawRectangleCommand* cmd) if (cmd->texture_enable && ShouldCheckForTexPageOverlap()) { CheckForTexPageOverlap(cmd, GSVector4i(static_cast(tex_left), static_cast(tex_top), - static_cast(tex_right), static_cast(tex_bottom))); + static_cast(tex_right) - 1, static_cast(tex_bottom) - 1)); } const u32 base_vertex = m_batch_vertex_count;