Skip to content

Commit

Permalink
Fix #1824 (#1825)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lord-Grey authored Jan 15, 2025
1 parent 61bfc2e commit 121abce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libsrc/utils/ImageResampler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down

0 comments on commit 121abce

Please sign in to comment.