[Scummvm-cvs-logs] SF.net SVN: scummvm: [21401] scummvm/trunk/engines/simon/vga.cpp

kirben at users.sourceforge.net kirben at users.sourceforge.net
Wed Mar 22 00:57:10 CET 2006


Revision: 21401
Author:   kirben
Date:     2006-03-22 00:56:10 -0800 (Wed, 22 Mar 2006)
ViewCVS:  http://svn.sourceforge.net/scummvm/?rev=21401&view=rev

Log Message:
-----------
Skip columns isn't used for overlayed or scaled images in FF

Modified Paths:
--------------
    scummvm/trunk/engines/simon/vga.cpp
Modified: scummvm/trunk/engines/simon/vga.cpp
===================================================================
--- scummvm/trunk/engines/simon/vga.cpp	2006-03-22 08:27:41 UTC (rev 21400)
+++ scummvm/trunk/engines/simon/vga.cpp	2006-03-22 08:56:10 UTC (rev 21401)
@@ -857,8 +857,6 @@
 			state->dl = state->width;
 			state->dh = state->height;
 
-			vc10_skip_cols(state);
-
 			dst_org = state->surf_addr;
 			w = 0;
 			do {
@@ -867,8 +865,9 @@
 
 				h = 0;
 				do {
-					*dst = *src++;
+					*dst = *src;
 					dst += _screenWidth;
+					src++;
 				} while (++h != state->draw_height);
 				dst_org++;
 			} while (++w != state->draw_width);
@@ -893,8 +892,6 @@
 			state->dl = state->width;
 			state->dh = state->height;
 
-			vc10_skip_cols(state);
-
 			dst_org = state->surf_addr;
 			w = 0;
 			do {


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