For low frame rates, deal with moving over more than one leg per

update.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3923 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Andrzej Kapolka
2006-03-08 01:40:09 +00:00
parent a0e9f70db3
commit 3163825b29
@@ -59,7 +59,7 @@ public class LineSegmentPath extends Path
// if we have surpassed the time for this segment, subtract the
// segment time and move on to the next segment
if (_accum > _durations[_current]) {
while (_current < _durations.length && _accum > _durations[_current]) {
_accum -= _durations[_current];
advance();
}