Skip to content

Commit

Permalink
fix missing root move for shape 5
Browse files Browse the repository at this point in the history
  • Loading branch information
tehn committed Mar 25, 2016
1 parent 9652f01 commit 9f0f790
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -1290,7 +1290,7 @@ static void shape(u8 s, u8 x, u8 y) {
es.p[p_select].x = x - es.p[p_select].e[0].x;
es.p[p_select].y = y - es.p[p_select].e[0].y;
}
else if(s<4) {
else if(s<5) {
// cv_pos = SCALES[0][x] + (7-y)*170;
// cv_pos = SEMI[x+(7-y)*5];
aout[3].target = SEMI[x+(7-y)*5];
Expand Down

0 comments on commit 9f0f790

Please sign in to comment.