[Scummvm-cvs-logs] SF.net SVN: scummvm: [24082] scummvm/trunk/engines/agos

kirben at users.sourceforge.net kirben at users.sourceforge.net
Mon Oct 2 23:47:49 CEST 2006


Revision: 24082
          http://svn.sourceforge.net/scummvm/?rev=24082&view=rev
Author:   kirben
Date:     2006-10-02 14:47:45 -0700 (Mon, 02 Oct 2006)

Log Message:
-----------
Fix mistake in startAnOverlayAnim()

Modified Paths:
--------------
    scummvm/trunk/engines/agos/rules.cpp
    scummvm/trunk/engines/agos/vga.cpp

Modified: scummvm/trunk/engines/agos/rules.cpp
===================================================================
--- scummvm/trunk/engines/agos/rules.cpp	2006-10-02 21:41:18 UTC (rev 24081)
+++ scummvm/trunk/engines/agos/rules.cpp	2006-10-02 21:47:45 UTC (rev 24082)
@@ -695,7 +695,7 @@
 }
 
 void AGOSEngine::gravityCheck() {
-	printf("GravityCheck\n");
+	printf("gravityCheck\n");
 
 	int i, k;
 	int x, y, z;

Modified: scummvm/trunk/engines/agos/vga.cpp
===================================================================
--- scummvm/trunk/engines/agos/vga.cpp	2006-10-02 21:41:18 UTC (rev 24081)
+++ scummvm/trunk/engines/agos/vga.cpp	2006-10-02 21:47:45 UTC (rev 24082)
@@ -2973,7 +2973,7 @@
 }
 
 void AGOSEngine::startOverlayAnims() {
-	printf("StartOverlayAnims\n");
+	printf("startOverlayAnims\n");
 
 	VgaSprite *vsp = _vgaSprites;
 	int i;
@@ -3005,7 +3005,7 @@
 }
 
 void AGOSEngine::startAnOverlayAnim() {
-	printf("StartAnOverlayAnim\n");
+	printf("startAnOverlayAnim\n");
 
 	VgaSprite *vsp = _vgaSprites;
 	const byte *vcPtrOrg;
@@ -3016,7 +3016,7 @@
 
 	_vcPtr += 4;
 	a = vcReadNextWord();
-	_vcPtr += 4;
+	_vcPtr += 6;
 
 	while (vsp->id)
 		vsp++;
@@ -3056,7 +3056,7 @@
 }
 
 void AGOSEngine::startBlock(uint windowNum, uint zoneNum, uint vgaSpriteId, uint x, uint y, uint priority) {
-	printf("startBlock\n");
+	printf("startBlock: windowNum %d vgaSpriteId %d x %d y %d priority %d\n", windowNum, vgaSpriteId, x, y, priority);
 
 	VgaSprite *vsp = _vgaSprites;
 	const byte *vcPtrOrg;
@@ -3125,7 +3125,7 @@
 }
 
 void AGOSEngine::checkIfClickedOnBlock() {
-	 printf("CheckIfClickedOnBlock\n");
+	 printf("checkIfClickedOnBlock\n");
 
 	VgaSprite *vsp = _vgaSprites;
 	uint16 items[2];


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