[Scummvm-cvs-logs] SF.net SVN: scummvm:[42619] scummvm/trunk/backends/platform/wince/CEScaler. cpp

knakos at users.sourceforge.net knakos at users.sourceforge.net
Sun Jul 19 18:10:55 CEST 2009


Revision: 42619
          http://scummvm.svn.sourceforge.net/scummvm/?rev=42619&view=rev
Author:   knakos
Date:     2009-07-19 16:10:55 +0000 (Sun, 19 Jul 2009)

Log Message:
-----------
whoops, fix non-arm build (why? :-) )

Modified Paths:
--------------
    scummvm/trunk/backends/platform/wince/CEScaler.cpp

Modified: scummvm/trunk/backends/platform/wince/CEScaler.cpp
===================================================================
--- scummvm/trunk/backends/platform/wince/CEScaler.cpp	2009-07-19 15:36:11 UTC (rev 42618)
+++ scummvm/trunk/backends/platform/wince/CEScaler.cpp	2009-07-19 16:10:55 UTC (rev 42619)
@@ -225,8 +225,8 @@
 	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
 }


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list