Skip to content

Commit

Permalink
FULLPIPE: Fix getCurrPoint(). Now Dude walks almost perfectly. Kudos …
Browse files Browse the repository at this point in the history
…to wanwan
  • Loading branch information
sev- committed Aug 20, 2016
1 parent 847b9c8 commit 1dc8ae5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion engines/fullpipe/statics.cpp
Expand Up @@ -69,7 +69,8 @@ Common::Point *StepArray::getCurrPoint(Common::Point *point) {
point->x = 0;
point->y = 0;
} else {
point = _points[_currPointIndex];
point->x = _points[_currPointIndex]->x;
point->y = _points[_currPointIndex]->y;
}
return point;
}
Expand Down

0 comments on commit 1dc8ae5

Please sign in to comment.