From 6ddf6693ce106cc3ddc830eaffebc4e3918d02ab Mon Sep 17 00:00:00 2001 From: peres Date: Sat, 7 May 2011 08:38:53 +0900 Subject: GRAPHICS: use the new interpolate16_5_3 --- graphics/scaler/aspect.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'graphics/scaler') diff --git a/graphics/scaler/aspect.cpp b/graphics/scaler/aspect.cpp index 85768fbced..85b79ab6cd 100644 --- a/graphics/scaler/aspect.cpp +++ b/graphics/scaler/aspect.cpp @@ -79,10 +79,7 @@ static inline void interpolate5Line(uint16 *dst, const uint16 *srcA, const uint1 } } else { while (width--) { - // TODO: We really would like to use interpolate16_5_3, but that - // does not exist (yet), so we use this trick instead. - uint16 tmp = *srcA++; - *dst++ = interpolate16_5_2_1(*srcB++, tmp, tmp); + *dst++ = interpolate16_5_3(*srcB++, *srcA++); } } } -- cgit v1.2.3