diff options
author | Ajarmar <axel.jarmar@gmail.com> | 2019-10-27 00:41:03 +0200 |
---|---|---|
committer | Ajarmar <axel.jarmar@gmail.com> | 2019-10-27 00:41:03 +0200 |
commit | d7a7974ace3d424976fe8c6ab715528001ce8be8 (patch) | |
tree | 11e139bd324718b88497198543a14408a4ce9153 | |
parent | 66f13ac6f76608ba3fbc52e8acf46e48d379f3cb (diff) |
removed a comment
-rwxr-xr-x | src/com/dabomstew/pkrandom/newnds/NDSRom.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/dabomstew/pkrandom/newnds/NDSRom.java b/src/com/dabomstew/pkrandom/newnds/NDSRom.java index 266b1bd..c0fe637 100755 --- a/src/com/dabomstew/pkrandom/newnds/NDSRom.java +++ b/src/com/dabomstew/pkrandom/newnds/NDSRom.java @@ -203,7 +203,7 @@ public class NDSRom { int fileID = readFromByteArr(y9table, i * 32 + 24, 4); int start = readFromByteArr(fat, fileID * 8, 4); int end = readFromByteArr(fat, fileID * 8 + 4, 4); - overlay.offset = start; // black: 0x12FADA, white: 0x12FB01 (for TM21) + overlay.offset = start; overlay.size = end - start; overlay.original_size = end - start; overlay.fileID = fileID; |