From f3d638d04c9b1e6241b60815bd28dd3d51734539 Mon Sep 17 00:00:00 2001 From: LordGrey <48840279+Lord-Grey@users.noreply.github.com> Date: Tue, 14 Jan 2025 13:02:38 +0100 Subject: [PATCH] Fix #1824 --- libsrc/utils/ImageResampler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libsrc/utils/ImageResampler.cpp b/libsrc/utils/ImageResampler.cpp index d36beb105..793620a50 100644 --- a/libsrc/utils/ImageResampler.cpp +++ b/libsrc/utils/ImageResampler.cpp @@ -53,7 +53,7 @@ void ImageResampler::processImage(const uint8_t * data, int width, int height, i int xDestStart {0}; int xDestEnd = {outputWidth-1}; int yDestStart = {0}; - int yDestEnd = {outputWidth-1}; + int yDestEnd = {outputHeight-1}; switch (_flipMode) {