aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/wince/CEScaler.cpp
diff options
context:
space:
mode:
authorKostas Nakos2009-07-19 16:10:55 +0000
committerKostas Nakos2009-07-19 16:10:55 +0000
commit4bd5023d235462ccc559f26422f7ba4e6d31ce47 (patch)
tree04757ce071487b9121778f3468f198f52afd3618 /backends/platform/wince/CEScaler.cpp
parentc313396aac7bdd3a477c7be022ecf49625b79b55 (diff)
downloadscummvm-rg350-4bd5023d235462ccc559f26422f7ba4e6d31ce47.tar.gz
scummvm-rg350-4bd5023d235462ccc559f26422f7ba4e6d31ce47.tar.bz2
scummvm-rg350-4bd5023d235462ccc559f26422f7ba4e6d31ce47.zip
whoops, fix non-arm build (why? :-) )
svn-id: r42619
Diffstat (limited to 'backends/platform/wince/CEScaler.cpp')
-rw-r--r--backends/platform/wince/CEScaler.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/platform/wince/CEScaler.cpp b/backends/platform/wince/CEScaler.cpp
index badf323a67..d26db3190f 100644
--- a/backends/platform/wince/CEScaler.cpp
+++ b/backends/platform/wince/CEScaler.cpp
@@ -225,8 +225,8 @@ void SmartphoneLandscape(const uint8 *srcPtr, uint32 srcPitch, uint8 *dstPtr, ui
SmartphoneLandscapeARM(srcPtr, srcPitch, dstPtr, dstPitch, width, height, redbluegreenMasks[maskUsed]);
#else
if (gBitFormat == 565)
- SmartphoneLandscape<565>(srcPtr, srcPitch, dstPtr, dstPitch, width, height);
+ SmartphoneLandscapeTemplate<565>(srcPtr, srcPitch, dstPtr, dstPitch, width, height);
else
- SmartphoneLandscape<555>(srcPtr, srcPitch, dstPtr, dstPitch, width, height);
+ SmartphoneLandscapeTemplate<555>(srcPtr, srcPitch, dstPtr, dstPitch, width, height);
#endif
}