Clippy fix didn't delete a space

This commit is contained in:
Gwilym Inzani 2023-07-04 20:37:26 +01:00
parent 6fb7b74b35
commit 14c6542e7b

View file

@ -189,7 +189,7 @@ impl TileSetting {
} }
} }
fn find_screenblock_gap(screenblocks: &Bitarray<1>, gap: usize) -> usize { fn find_screenblock_gap(screenblocks: &Bitarray<1>, gap: usize) -> usize {
let mut candidate = 0; let mut candidate = 0;
'outer: while candidate < 16 - gap { 'outer: while candidate < 16 - gap {