warning cleanup

This commit is contained in:
Henry Schimke
2022-10-16 11:54:03 -05:00
parent 732c46090c
commit 07348168ad
11 changed files with 30 additions and 30 deletions

View File

@@ -78,7 +78,7 @@ impl BitMatrixParser {
// for (int x = 0; x < width; x++) {
let bit = bitnrRow[x];
if bit >= 0 && self.0.get(x as u32, y as u32) {
result[bit as usize / 6] |= (1 << (5 - (bit % 6)));
result[bit as usize / 6] |= 1 << (5 - (bit % 6));
}
}
}