diff options
Diffstat (limited to 'common/scaler')
-rw-r--r-- | common/scaler/2xsai.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/common/scaler/2xsai.cpp b/common/scaler/2xsai.cpp index cf7e3457e6..779f3b1710 100644 --- a/common/scaler/2xsai.cpp +++ b/common/scaler/2xsai.cpp @@ -52,8 +52,6 @@ void Super2xSaITemplate(const uint8 *srcPtr, uint32 srcPitch, uint8 *dstPtr, uin uint16 *dP; const uint32 nextlineSrc = srcPitch >> 1; - dstPtr += dstPitch; - while (height--) { bP = (const uint16 *)srcPtr; dP = (uint16 *)dstPtr; @@ -163,8 +161,6 @@ void SuperEagleTemplate(const uint8 *srcPtr, uint32 srcPitch, uint8 *dstPtr, uin uint16 *dP; const uint32 nextlineSrc = srcPitch >> 1; - dstPtr += dstPitch; - while (height--) { bP = (const uint16 *)srcPtr; dP = (uint16 *)dstPtr; @@ -276,8 +272,6 @@ void _2xSaITemplate(const uint8 *srcPtr, uint32 srcPitch, uint8 *dstPtr, uint32 uint16 *dP; const uint32 nextlineSrc = srcPitch >> 1; - dstPtr += dstPitch; - while (height--) { bP = (const uint16 *)srcPtr; dP = (uint16 *)dstPtr; |