Skip to content

Commit

Permalink
Fix action drawing
Browse files Browse the repository at this point in the history
  • Loading branch information
rbrott committed Dec 14, 2022
1 parent 45d77b8 commit 2d9c57a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ public boolean loop(TelemetryPacket p) {
@Override
public void draw(Canvas c) {
for (Action a : actions) {
draw(c);
a.draw(c);
}
}
}
Expand Down Expand Up @@ -255,7 +255,7 @@ public boolean loop(TelemetryPacket p) {
@Override
public void draw(Canvas c) {
for (Action a : actions) {
draw(c);
a.draw(c);
}
}
}

0 comments on commit 2d9c57a

Please sign in to comment.