[Scummvm-cvs-logs] SF.net SVN: scummvm:[39012] scummvm/branches/branch-0-13-0/engines/agos

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


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

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

Modified Paths:
--------------
    scummvm/branches/branch-0-13-0/engines/agos/agos.cpp
    scummvm/branches/branch-0-13-0/engines/agos/vga.cpp

Modified: scummvm/branches/branch-0-13-0/engines/agos/agos.cpp
===================================================================
--- scummvm/branches/branch-0-13-0/engines/agos/agos.cpp	2009-03-01 06:43:46 UTC (rev 39011)
+++ scummvm/branches/branch-0-13-0/engines/agos/agos.cpp	2009-03-01 06:46:56 UTC (rev 39012)
@@ -876,6 +876,10 @@
 			_videoWindows[i] = initialVideoWindows_Common[i];
 		}
 	}
+
+	if (getGameType() == GType_ELVIRA2 && getPlatform() == Common::kPlatformAtariST) {
+		_videoWindows[9] = 75;
+	}
 }
 
 AGOSEngine::~AGOSEngine() {

Modified: scummvm/branches/branch-0-13-0/engines/agos/vga.cpp
===================================================================
--- scummvm/branches/branch-0-13-0/engines/agos/vga.cpp	2009-03-01 06:43:46 UTC (rev 39011)
+++ scummvm/branches/branch-0-13-0/engines/agos/vga.cpp	2009-03-01 06:46:56 UTC (rev 39012)
@@ -600,13 +600,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