diff options
Diffstat (limited to 'xBRZ/src/xbrz_tools.h')
-rw-r--r-- | xBRZ/src/xbrz_tools.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xBRZ/src/xbrz_tools.h b/xBRZ/src/xbrz_tools.h index cd6acc63..9d8e8247 100644 --- a/xBRZ/src/xbrz_tools.h +++ b/xBRZ/src/xbrz_tools.h @@ -94,7 +94,7 @@ void nearestNeighborScale(const PixSrc* src, int srcWidth, int srcHeight, int sr { const int ySrc = srcHeight * y / trgHeight; const PixSrc* const srcLine = byteAdvance(src, ySrc * srcPitch); - PixTrg* const trgLine = byteAdvance(trg, y * trgPitch); + /**/ PixTrg* const trgLine = byteAdvance(trg, y * trgPitch); for (int x = 0; x < trgWidth; ++x) { |