[Scummvm-cvs-logs] SF.net SVN: scummvm: [23646] scummvm/trunk/engines/scumm/script_v5.cpp

kirben at users.sourceforge.net kirben at users.sourceforge.net
Mon Jul 31 16:49:04 CEST 2006


Revision: 23646
Author:   kirben
Date:     2006-07-31 07:48:58 -0700 (Mon, 31 Jul 2006)
ViewCVS:  http://svn.sourceforge.net/scummvm/?rev=23646&view=rev

Log Message:
-----------
Fix bug #1528856 - ZAK FM-TOWNS: Wrong Screen-Start position in jungle.

Modified Paths:
--------------
    scummvm/trunk/engines/scumm/script_v5.cpp
Modified: scummvm/trunk/engines/scumm/script_v5.cpp
===================================================================
--- scummvm/trunk/engines/scumm/script_v5.cpp	2006-07-31 13:41:21 UTC (rev 23645)
+++ scummvm/trunk/engines/scumm/script_v5.cpp	2006-07-31 14:48:58 UTC (rev 23646)
@@ -1493,6 +1493,9 @@
 
 	// This is based on disassembly
 	camera._cur.x = camera._dest.x = a->_pos.x;
+	if ((_game.id == GID_ZAK || _game.id == GID_LOOM) && (_game.platform == Common::kPlatformFMTowns)) {
+		setCameraAt(a->_pos.x, a->_pos.y);
+	}
 	setCameraFollows(a);
 
 	_fullRedraw = true;


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