--- trunk/src/selection/SelectionEvaluator.cpp 2005/02/07 19:13:18 295 +++ trunk/src/selection/SelectionEvaluator.cpp 2005/02/07 20:39:36 301 @@ -102,7 +102,7 @@ bool SelectionEvaluator::loadScriptFileInternal(const } bool SelectionEvaluator::loadScriptFileInternal(const std::string & filename) { - ifstream ifs(filename.c_str()); + std::ifstream ifs(filename.c_str()); if (!ifs.is_open()) { return false; } @@ -386,6 +386,7 @@ BitSet SelectionEvaluator::evaluate() { BitSet SelectionEvaluator::evaluate() { BitSet bs(nStuntDouble); if (isLoaded_) { + pc = 0; instructionDispatchLoop(bs); }