PARALLACTION: Fix for Valgrind Uninitialized Error in Big Red Adventure Walk Code.

svn-id: r55221
This commit is contained in:
David Turner 2011-01-13 03:25:57 +00:00
parent a7a05fc053
commit 731a75adb8

View File

@ -732,7 +732,9 @@ void PathWalker_BR::doWalk(State &s) {
PathWalker_BR::PathWalker_BR() {
_character._active = false;
_character._step = 0;
_follower._active = false;
_follower._step = 0;
}