diff --git a/examples/tools/bevymark.rs b/examples/tools/bevymark.rs index adbaf674691c7..ac3c975438693 100644 --- a/examples/tools/bevymark.rs +++ b/examples/tools/bevymark.rs @@ -50,7 +50,7 @@ struct BirdTexture(Handle); fn setup( mut commands: Commands, - window: Res, + windows: Res, mut counter: ResMut, asset_server: Res, ) { @@ -61,7 +61,7 @@ fn setup( { spawn_birds( &mut commands, - &window, + &windows, &mut counter, initial_count, texture.clone_weak(), @@ -126,7 +126,7 @@ fn mouse_handler( mut commands: Commands, time: Res