Fix All flag

This commit is contained in:
F. Levi 2024-10-04 14:33:35 +03:00
parent c61f6ce071
commit a9a338dcba

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;
}