diff options
-rw-r--r-- | engines/parallaction/defs.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/parallaction/defs.h b/engines/parallaction/defs.h index 6501a2c4b1..6d82098022 100644 --- a/engines/parallaction/defs.h +++ b/engines/parallaction/defs.h @@ -54,7 +54,9 @@ public: WalkNode(int32 x, int32 y) : _x(x), _y(y) { } - WalkNode(const WalkNode& w) : _x(w._x), _y(w._y) { + WalkNode(const WalkNode& w) : Node(), _x(w._x), _y(w._y) { + // TODO: This will not properly set _prev and _next + // -- not sure what would be "correct" here? } void getPoint(Common::Point &p) const { |