Skip to content

Commit

Permalink
fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
mockersf committed Nov 24, 2021
1 parent cdfac48 commit f5f44e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/tools/bevymark_pipelined.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ fn setup(
{
spawn_birds(
&mut commands,
&windows.get_primary().unwrap(),
windows.get_primary().unwrap(),
&mut counter,
initial_count,
texture.clone_weak(),
Expand Down Expand Up @@ -174,7 +174,7 @@ fn mouse_handler(
let spawn_count = (BIRDS_PER_SECOND as f64 * time.delta_seconds_f64()) as u128;
spawn_birds(
&mut commands,
&windows.get_primary().unwrap(),
windows.get_primary().unwrap(),
&mut counter,
spawn_count,
bird_texture.0.clone(),
Expand Down

0 comments on commit f5f44e1

Please sign in to comment.