This commit is contained in:
F. Levi 2024-10-05 13:40:38 +03:00
parent 0403ec0a56
commit e9668eff79

View File

@ -230,7 +230,7 @@ bitflags! {
let mut exp = 0; let mut exp = 0;
while exp <= 24 { while exp <= 24 {
all |= 1 << exp; all = (all << 1) + 1;
exp += 1; exp += 1;
} }