Number tweaks

This commit is contained in:
cyberpwn
2022-01-13 07:18:14 -05:00
parent 47fa31515d
commit f57ad5a888
5 changed files with 8 additions and 6 deletions

View File

@@ -72,7 +72,7 @@ public class MCABitStorage {
this.mask = (1L << bits) - 1L;
this.valuesPerLong = (char) (64 / bits);
int var3 = 3 * (this.valuesPerLong - 1);
this.divideMul = MAGIC[var3 + 0];
this.divideMul = MAGIC[var3];
this.divideAdd = MAGIC[var3 + 1];
this.divideShift = MAGIC[var3 + 2];
int var4 = (length + this.valuesPerLong - 1) / this.valuesPerLong;