aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorMax Horn2003-07-02 14:47:06 +0000
committerMax Horn2003-07-02 14:47:06 +0000
commit621e356b4257d89614b0f61b2dda7988bdb06119 (patch)
tree4188c3f3624011129b3e9fda900252c2dcb187eb /common
parentf27b711e79a5cb96380dc9d39bd54acccbe60121 (diff)
downloadscummvm-rg350-621e356b4257d89614b0f61b2dda7988bdb06119.tar.gz
scummvm-rg350-621e356b4257d89614b0f61b2dda7988bdb06119.tar.bz2
scummvm-rg350-621e356b4257d89614b0f61b2dda7988bdb06119.zip
don't default to the slowest aspect ratio correcter; rather use the medium one (good quality with acceptable speed)
svn-id: r8715
Diffstat (limited to 'common')
-rw-r--r--common/scaler.cpp2
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);