Skip to content

Commit

Permalink
Another one slipped through
Browse files Browse the repository at this point in the history
  • Loading branch information
rparrett committed Jan 26, 2023
1 parent 59d30ff commit 3a0c09d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/shader/texture_binding_array.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ fn setup(
let textures: Vec<_> = TILE_ID
.iter()
.map(|id| {
let path = format!("textures/rpg/tiles/generic-rpg-tile{:0>2}.png", id);
let path = format!("textures/rpg/tiles/generic-rpg-tile{id:0>2}.png");
asset_server.load(path)
})
.collect();
Expand Down

0 comments on commit 3a0c09d

Please sign in to comment.