minor bugfix - enabling 31st bit
This commit is contained in:
parent
2e591e449c
commit
63b7ee7496
Binary file not shown.
|
@ -12,9 +12,9 @@ public class BitState {
|
|||
bitIndex = 0;
|
||||
return;
|
||||
}
|
||||
bitIndex++;
|
||||
if (bitIndex == 32)
|
||||
throw new IllegalStateException("Too many bits: " + cf.name);
|
||||
bitIndex++;
|
||||
}
|
||||
|
||||
public void reset() {
|
||||
|
|
Loading…
Reference in New Issue