Skip to content

Commit

Permalink
Fix bug #217 Reversion of one point guides.
Browse files Browse the repository at this point in the history
  • Loading branch information
johncbowman committed Feb 12, 2016
1 parent 213d569 commit 75ce996
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime.in
Expand Up @@ -977,7 +977,7 @@ guide *reverse(guide *g)
guidevector v;
size_t start=cyclic ? n : n-1;
knot curr=f.Nodes(start);
knot next;
knot next=curr;
for(size_t i=start; i > 0; --i) {
next=f.Nodes(i-1);
v.push_back(new pairguide(curr.z));
Expand Down

0 comments on commit 75ce996

Please sign in to comment.