Browse Source

Fix typo in JIT.

master
Andy Nguyen 1 year ago
parent
commit
57233f4a72
  1. 2
      com/bdjb/JIT.java

2
com/bdjb/JIT.java

@ -211,7 +211,7 @@ public final class JIT { @@ -211,7 +211,7 @@ public final class JIT {
for (long i = dataSectionOffset; i < file.length(); i += CHUNK_SIZE) {
api.memset(chunk, 0, CHUNK_SIZE);
file.seek(dataSectionOffset);
file.seek(i);
int read = file.read(chunk, 0, (int) Math.min(file.length() - i, CHUNK_SIZE));
api.memcpy(address + i, chunk, read);

Loading…
Cancel
Save