From a34c019279661332f95d5d843924998c2eaecb17 Mon Sep 17 00:00:00 2001 From: HampusM Date: Thu, 23 Jul 2026 17:40:15 +0200 Subject: refactor(engine): correct query type parameters --- engine/src/rendering/backend/opengl.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'engine/src/rendering/backend/opengl.rs') diff --git a/engine/src/rendering/backend/opengl.rs b/engine/src/rendering/backend/opengl.rs index bab916a..1253c7b 100644 --- a/engine/src/rendering/backend/opengl.rs +++ b/engine/src/rendering/backend/opengl.rs @@ -188,8 +188,9 @@ impl crate::ecs::extension::Extension for Extension fn prepare_windows( window_query: Query< - (Option<&Window>, &mut WindowCreationAttributes), ( + Option<&Window>, + &mut WindowCreationAttributes, With, Without, Without, @@ -272,8 +273,7 @@ fn prepare_windows( #[tracing::instrument(skip_all)] fn init_window_graphics( window_query: Query< - (&Window, &WindowGlConfig), - (With, Without), + (&Window, &WindowGlConfig, With, Without), >, windowing_context: Single, graphics_props: Single, -- cgit v1.2.3-18-g5258