[Scummvm-cvs-logs] SF.net SVN: scummvm:[47074] scummvm/trunk/engines/sci/video/seq_decoder.cpp

thebluegr at users.sourceforge.net thebluegr at users.sourceforge.net
Wed Jan 6 13:56:01 CET 2010


Revision: 47074
          http://scummvm.svn.sourceforge.net/scummvm/?rev=47074&view=rev
Author:   thebluegr
Date:     2010-01-06 12:55:51 +0000 (Wed, 06 Jan 2010)

Log Message:
-----------
Removed one more hardcoded screen dimension

Modified Paths:
--------------
    scummvm/trunk/engines/sci/video/seq_decoder.cpp

Modified: scummvm/trunk/engines/sci/video/seq_decoder.cpp
===================================================================
--- scummvm/trunk/engines/sci/video/seq_decoder.cpp	2010-01-06 12:21:27 UTC (rev 47073)
+++ scummvm/trunk/engines/sci/video/seq_decoder.cpp	2010-01-06 12:55:51 UTC (rev 47074)
@@ -140,7 +140,7 @@
 		do {
 			_fileStream->read(linebuf, frameWidth);
 			memcpy(dst, linebuf, frameWidth);
-			dst += 320;
+			dst += SCREEN_WIDTH;
 		} while (--frameHeight);
 
 		delete[] linebuf;


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