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

Kirben at users.sourceforge.net Kirben at users.sourceforge.net
Sun Mar 1 07:43:46 CET 2009


Revision: 39011
          http://scummvm.svn.sourceforge.net/scummvm/?rev=39011&view=rev
Author:   Kirben
Date:     2009-03-01 06:43:46 +0000 (Sun, 01 Mar 2009)

Log Message:
-----------
Correctly fix position of icons in AtariST version of Elvira 2.

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

Modified: scummvm/trunk/engines/agos/agos.cpp
===================================================================
--- scummvm/trunk/engines/agos/agos.cpp	2009-03-01 06:17:52 UTC (rev 39010)
+++ scummvm/trunk/engines/agos/agos.cpp	2009-03-01 06:43:46 UTC (rev 39011)
@@ -874,6 +874,10 @@
 			_videoWindows[i] = initialVideoWindows_Common[i];
 		}
 	}
+
+	if (getGameType() == GType_ELVIRA2 && getPlatform() == Common::kPlatformAtariST) {
+		_videoWindows[9] = 75;
+	}
 }
 
 AGOSEngine::~AGOSEngine() {

Modified: scummvm/trunk/engines/agos/vga.cpp
===================================================================
--- scummvm/trunk/engines/agos/vga.cpp	2009-03-01 06:17:52 UTC (rev 39010)
+++ scummvm/trunk/engines/agos/vga.cpp	2009-03-01 06:43:46 UTC (rev 39011)
@@ -595,13 +595,6 @@
 		flags = vcReadNextWord();
 	}
 
-	if (getGameType() == GType_ELVIRA2 && getPlatform() == Common::kPlatformAtariST) {
-		if (((image >= 11 && image <= 16) || (image >= 195 && image <= 198)) &&
-			_zoneNumber == 1) {
-			y += 75;
-		}
-	}
-
 	drawImage_init(image, palette, x, y, flags);
 }
 


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