minor bugfix - enabling 31st bit

This commit is contained in:
rusefi 2019-05-02 18:19:56 -04:00
parent bfdd64b36b
commit f02207735a
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -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() {