@gaialabs/core 0.1.7 → 0.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3700,7 +3700,7 @@ var RomGenerator = class {
|
|
|
3700
3700
|
for (const file of manualFiles ?? []) this.applyPatchFile(file, chunkFiles, asmFiles, patchFiles);
|
|
3701
3701
|
this.assembleCodeFromText(asmFiles);
|
|
3702
3702
|
RomProcessor.applyPatches(asmFiles, patchFiles);
|
|
3703
|
-
for (const asm of
|
|
3703
|
+
for (const asm of chunkFiles) shared.ChunkFileUtils.calculateSize(asm);
|
|
3704
3704
|
const layout = new RomLayout(chunkFiles);
|
|
3705
3705
|
layout.organize();
|
|
3706
3706
|
for (const file of asmFiles) shared.ChunkFileUtils.rebase(file);
|