Skip to content

Commit

Permalink
Run clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
skarekrow committed Sep 26, 2023
1 parent afb7b47 commit 235fedc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,9 @@ fn setup(
)),
..default()
});
i2 = i2 + 1.;
i2 += 1.;
}
i = i + 1.;
i += 1.;
}

// Draw Ball
Expand Down

0 comments on commit 235fedc

Please sign in to comment.