Skip to content

Commit f3d638d

Browse files
committed
Fix #1824
1 parent 0aa7df4 commit f3d638d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libsrc/utils/ImageResampler.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ void ImageResampler::processImage(const uint8_t * data, int width, int height, i
5353
int xDestStart {0};
5454
int xDestEnd = {outputWidth-1};
5555
int yDestStart = {0};
56-
int yDestEnd = {outputWidth-1};
56+
int yDestEnd = {outputHeight-1};
5757

5858
switch (_flipMode)
5959
{

0 commit comments

Comments
 (0)