Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
IceSentry committed Jan 26, 2024
1 parent 9d75f78 commit 8eba7d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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((
Expand Down

0 comments on commit 8eba7d0

Please sign in to comment.