From 8eba7d076143499f2eb74bed463abb66a16d2748 Mon Sep 17 00:00:00 2001 From: IceSentry Date: Fri, 26 Jan 2024 13:35:12 -0500 Subject: [PATCH] clippy --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 0f1cb44..16619fe 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -17,9 +17,9 @@ pub struct PolylinePlugin; impl Plugin for PolylinePlugin { fn build(&self, app: &mut bevy::prelude::App) { - #[cfg(all(target_family = "windows"))] + #[cfg(target_family = "windows")] embedded_asset!(app, "src\\", "shaders\\polyline.wgsl"); - #[cfg(any(not(target_family = "windows")))] + #[cfg(not(target_family = "windows"))] embedded_asset!(app, "src/", "shaders/polyline.wgsl"); app.add_plugins((