[Scummvm-cvs-logs] SF.net SVN: scummvm: [26406] scummvm/trunk/engines/parallaction/walk.cpp

peres001 at users.sourceforge.net peres001 at users.sourceforge.net
Sat Apr 7 16:01:37 CEST 2007


Revision: 26406
          http://scummvm.svn.sourceforge.net/scummvm/?rev=26406&view=rev
Author:   peres001
Date:     2007-04-07 07:01:37 -0700 (Sat, 07 Apr 2007)

Log Message:
-----------
Explicit constructor invoked when instancing WalkNode.

Modified Paths:
--------------
    scummvm/trunk/engines/parallaction/walk.cpp

Modified: scummvm/trunk/engines/parallaction/walk.cpp
===================================================================
--- scummvm/trunk/engines/parallaction/walk.cpp	2007-04-07 14:00:23 UTC (rev 26405)
+++ scummvm/trunk/engines/parallaction/walk.cpp	2007-04-07 14:01:37 UTC (rev 26406)
@@ -453,7 +453,7 @@
 WalkNode::WalkNode(int32 x, int32 y) : _x(x), _y(y) {
 }
 
-WalkNode::WalkNode(const WalkNode& w) : _x(w._x), _y(w._y) {
+WalkNode::WalkNode(const WalkNode& w) : Node(), _x(w._x), _y(w._y) {
 }
 
 void WalkNode::getPoint(Common::Point &p) const {


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