added explicit call to parent method

svn-id: r24950
This commit is contained in:
Gregory Montoir 2006-12-29 23:50:54 +00:00
parent 7f01700ac5
commit 2e5b25e15d

View File

@ -334,13 +334,14 @@ public:
public:
ActorC64(int id) : ActorOldWalk(id) {}
virtual void initActor(int mode) {
ActorOldWalk::initActor(mode);
if (mode == -1) {
_miscflags = 0;
}
}
protected:
};