From 121abce408153b6944ee593b30b02d343663f3cb Mon Sep 17 00:00:00 2001 From: LordGrey <48840279+Lord-Grey@users.noreply.github.com> Date: Wed, 15 Jan 2025 18:39:13 +0100 Subject: [PATCH] Fix #1824 (#1825) --- 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) {