diff options
-rw-r--r-- | common/scaler/scalebit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/scaler/scalebit.cpp b/common/scaler/scalebit.cpp index d540ca7317..ebe77093e6 100644 --- a/common/scaler/scalebit.cpp +++ b/common/scaler/scalebit.cpp @@ -61,7 +61,7 @@ static inline void stage_scale2x(void* dst0, void* dst1, const void* src0, const switch (pixel) { #if defined(__GNUC__) && defined(__i386__) case 1 : scale2x_8_mmx(DST(8,0), DST(8,1), SRC(8,0), SRC(8,1), SRC(8,2), pixel_per_row); break; - case 2 : scale2x_16_mmx(DST(8,0), DST(16,1), SRC(16,0), SRC(16,1), SRC(16,2), pixel_per_row); break; + case 2 : scale2x_16_mmx(DST(16,0), DST(16,1), SRC(16,0), SRC(16,1), SRC(16,2), pixel_per_row); break; case 4 : scale2x_32_mmx(DST(32,0), DST(32,1), SRC(32,0), SRC(32,1), SRC(32,2), pixel_per_row); break; #else case 1 : scale2x_8_def(DST(8,0), DST(8,1), SRC(8,0), SRC(8,1), SRC(8,2), pixel_per_row); break; |