Skip to content

Commit

Permalink
Fix #1824
Browse files Browse the repository at this point in the history
  • Loading branch information
Lord-Grey committed Jan 14, 2025
1 parent 0aa7df4 commit f3d638d
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 f3d638d

Please sign in to comment.