Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
mockersf committed Jul 19, 2024
1 parent 551932d commit 66b2907
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/stitching.rs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ impl Mesh {
return true;
}
if (*p >> 24) as u8 == layer_index as u8 {
*p = *p & 0b00000000111111111111111111111111;
*p &= 0b00000000111111111111111111111111;
true
} else {
false
Expand All @@ -116,7 +116,7 @@ impl Mesh {
return true;
}
if (*p >> 24) as u8 == layer_index as u8 {
*p = *p & 0b00000000111111111111111111111111;
*p &= 0b00000000111111111111111111111111;
true
} else {
false
Expand Down

0 comments on commit 66b2907

Please sign in to comment.