More accurate Buffer naming, renamed allocation arrays

This commit is contained in:
Pazaz 2022-06-15 13:20:22 -04:00
parent 5e66d3ba01
commit c5ef44dfcb
58 changed files with 891 additions and 896 deletions

View file

@ -21,7 +21,7 @@ public final class Js5Compression {
throw new RuntimeException();
} else if (type == 0) {
@Pc(53) byte[] bytes = new byte[len];
buffer.gBytes(len, bytes);
buffer.gdata(len, bytes);
return bytes;
} else {
@Pc(65) int uncompressedLen = buffer.g4();