[Scummvm-cvs-logs] SF.net SVN: scummvm: [29957] scummvm/trunk/engines/lure/res.cpp

dreammaster at users.sourceforge.net dreammaster at users.sourceforge.net
Sun Dec 23 11:52:19 CET 2007


Revision: 29957
          http://scummvm.svn.sourceforge.net/scummvm/?rev=29957&view=rev
Author:   dreammaster
Date:     2007-12-23 02:52:18 -0800 (Sun, 23 Dec 2007)

Log Message:
-----------
Bugfix for Town Hall room: Captive Goewin's bounds were frequently and incorrectly preventing the player from talking to the Skorl

Modified Paths:
--------------
    scummvm/trunk/engines/lure/res.cpp

Modified: scummvm/trunk/engines/lure/res.cpp
===================================================================
--- scummvm/trunk/engines/lure/res.cpp	2007-12-23 02:33:58 UTC (rev 29956)
+++ scummvm/trunk/engines/lure/res.cpp	2007-12-23 10:52:18 UTC (rev 29957)
@@ -601,9 +601,11 @@
 	Hotspot *hotspot = new Hotspot(hData);
 	_activeHotspots.push_back(hotspot);
 
-	if (hotspotId < FIRST_NONCHARACTER_ID) 
+	if (hotspotId < FIRST_NONCHARACTER_ID) { 
 		// Default characters to facing upwards until they start moving
 		hotspot->setDirection(UP);
+		hotspot->setCharRectY(0);
+	}
 
 	return hotspot;
 }


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