Skip to content

Commit

Permalink
-uhm
Browse files Browse the repository at this point in the history
  • Loading branch information
robtfm committed Aug 20, 2024
1 parent 283f859 commit 766082b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/bevy_pbr/src/material.rs
Original file line number Diff line number Diff line change
Expand Up @@ -953,8 +953,8 @@ impl<M: Material> RenderAsset for PreparedMaterial<M> {
Err(AsBindGroupError::RetryNextUpdate) => {
Err(PrepareAssetError::RetryNextUpdate(material))
}
Err(e) => {
Err(PrepareAssetError::AsBindGroupError(e))
Err(other) => {
Err(PrepareAssetError::AsBindGroupError(other))
}
}
}
Expand Down

0 comments on commit 766082b

Please sign in to comment.