[Scummvm-cvs-logs] SF.net SVN: scummvm:[39665] scummvm/branches/branch-0-13-0/engines/saga/ actor.cpp
thebluegr at users.sourceforge.net
thebluegr at users.sourceforge.net
Tue Mar 24 14:34:35 CET 2009
Revision: 39665
http://scummvm.svn.sourceforge.net/scummvm/?rev=39665&view=rev
Author: thebluegr
Date: 2009-03-24 13:34:35 +0000 (Tue, 24 Mar 2009)
Log Message:
-----------
(backport of commit #39664) Fixed a regression of commit #35473. Fixes bug #2703595 - "ITE: Crash when clicking on items inside the hangar"
Modified Paths:
--------------
scummvm/branches/branch-0-13-0/engines/saga/actor.cpp
Modified: scummvm/branches/branch-0-13-0/engines/saga/actor.cpp
===================================================================
--- scummvm/branches/branch-0-13-0/engines/saga/actor.cpp 2009-03-24 13:33:47 UTC (rev 39664)
+++ scummvm/branches/branch-0-13-0/engines/saga/actor.cpp 2009-03-24 13:34:35 UTC (rev 39665)
@@ -119,7 +119,7 @@
_pathRect.left = 0;
_pathRect.right = _vm->getDisplayInfo().width;
_pathRect.top = _vm->getDisplayInfo().pathStartY;
- _pathRect.bottom = _vm->getDisplayInfo().height;
+ _pathRect.bottom = _vm->_scene->getHeight();
// Get actor resource file context
_actorContext = _vm->_resource->getContext(GAME_RESOURCEFILE);
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