diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/scaler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/scaler.cpp b/common/scaler.cpp index cea445466e..d9bbc0b61e 100644 --- a/common/scaler.cpp +++ b/common/scaler.cpp @@ -659,7 +659,7 @@ static inline uint16 interpolate5(uint16 A, uint16 B, int scale) { } static inline void interpolate5Line(uint16 *dst, const uint16 *srcA, const uint16 *srcB, int scale, int width) { -#if 1 +#if 0 // Accurate but slightly slower code while (width--) { *dst++ = interpolate5(*srcA++, *srcB++, scale); |