Skip to content

Commit

Permalink
Rename created_windows_query to avoid ambiguity
Browse files Browse the repository at this point in the history
  • Loading branch information
Alice Cecile committed Oct 23, 2023
1 parent bbf852f commit 76eb942
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions crates/bevy_winit/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ pub fn winit_runner(mut app: App) {
#[cfg(not(target_arch = "wasm32"))]
let (
commands,
mut windows,
mut created_windows_query,
event_writer,
winit_windows,
adapters,
Expand All @@ -382,7 +382,7 @@ pub fn winit_runner(mut app: App) {
#[cfg(target_arch = "wasm32")]
let (
commands,
mut windows,
mut created_windows_query,
event_writer,
winit_windows,
adapters,
Expand All @@ -394,7 +394,7 @@ pub fn winit_runner(mut app: App) {
create_windows(
event_loop,
commands,
windows.iter_mut(),
created_windows_query.iter_mut(),
event_writer,
winit_windows,
adapters,
Expand Down Expand Up @@ -761,7 +761,7 @@ pub fn winit_runner(mut app: App) {
#[cfg(not(target_arch = "wasm32"))]
let (
commands,
mut windows,
mut created_windows_query,
event_writer,
winit_windows,
adapters,
Expand All @@ -772,7 +772,7 @@ pub fn winit_runner(mut app: App) {
#[cfg(target_arch = "wasm32")]
let (
commands,
mut windows,
mut created_windows_query,
event_writer,
winit_windows,
adapters,
Expand All @@ -784,7 +784,7 @@ pub fn winit_runner(mut app: App) {
create_windows(
event_loop,
commands,
windows.iter_mut(),
created_windows_query.iter_mut(),
event_writer,
winit_windows,
adapters,
Expand Down

0 comments on commit 76eb942

Please sign in to comment.