[Scummvm-cvs-logs] SF.net SVN: scummvm: [27812] scummvm/branches/branch-0-10-0/engines/scumm/ gfx.cpp

agent-q at users.sourceforge.net agent-q at users.sourceforge.net
Sun Jul 1 03:07:06 CEST 2007


Revision: 27812
          http://scummvm.svn.sourceforge.net/scummvm/?rev=27812&view=rev
Author:   agent-q
Date:     2007-06-30 18:07:05 -0700 (Sat, 30 Jun 2007)

Log Message:
-----------
Adding calls to new asm blitters for DS port

Modified Paths:
--------------
    scummvm/branches/branch-0-10-0/engines/scumm/gfx.cpp

Modified: scummvm/branches/branch-0-10-0/engines/scumm/gfx.cpp
===================================================================
--- scummvm/branches/branch-0-10-0/engines/scumm/gfx.cpp	2007-07-01 01:06:18 UTC (rev 27811)
+++ scummvm/branches/branch-0-10-0/engines/scumm/gfx.cpp	2007-07-01 01:07:05 UTC (rev 27812)
@@ -571,7 +571,7 @@
 		const byte *text = (byte *)_textSurface.getBasePtr(x, y);
 	
 #ifdef __DS__
-		DS::asmDrawStripToScreen(height, width, text, src, dst, vs->pitch, _screenWidth, _textSurface.pitch);
+		asmDrawStripToScreen(height, width, text, src, dst, vs->pitch, _screenWidth, _textSurface.pitch);
 #else	
 		// Compose the text over the game graphics
 		for (int h = 0; h < height; ++h) {
@@ -1020,7 +1020,7 @@
 		src += dstPitch;
 	} while (--height);
 #else	
-	DS::asmCopy8Col(dst, dstPitch, src, height);
+	asmCopy8Col(dst, dstPitch, src, 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