Fix All flag

This commit is contained in:
F. Levi 2024-10-04 14:33:35 +03:00
parent 56b5289b2f
commit 0403ec0a56

View File

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