Deobf datapalette

This commit is contained in:
cyberpwn 2021-08-25 02:41:13 -04:00
parent a746720a6e
commit 9b3013c51a

View File

@ -86,7 +86,7 @@ public class DataBits {
this.b[var2] = var3 & ~(this.d << var5) | ((long) var1 & this.d) << var5; this.b[var2] = var3 & ~(this.d << var5) | ((long) var1 & this.d) << var5;
} }
public int a(int var0) { public int getIndexFromPos(int var0) {
Validate.inclusiveBetween(0L, (long) (this.e - 1), (long) var0); Validate.inclusiveBetween(0L, (long) (this.e - 1), (long) var0);
int var1 = this.b(var0); int var1 = this.b(var0);
long var2 = this.b[var1]; long var2 = this.b[var1];
@ -94,7 +94,7 @@ public class DataBits {
return (int) (var2 >> var4 & this.d); return (int) (var2 >> var4 & this.d);
} }
public long[] a() { public long[] getData() {
return this.b; return this.b;
} }