diff --git a/common/scaler.cpp b/common/scaler.cpp index cea445466e4..d9bbc0b61e0 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);