summaryrefslogtreecommitdiff
path: root/extract_assets.py
diff options
context:
space:
mode:
authorDan Lilja <dan@danlilja.se>2022-09-20 05:36:34 +0200
committerGitHub <noreply@github.com>2022-09-19 23:36:34 -0400
commit7c3959c8c56e98c02afeceaecee3cd3974272e08 (patch)
treed3160f7634d3cf6532c2a0095be2bcb2648e780f /extract_assets.py
parentbfc9ed4fa9b538f64faec9e65b219f957ac31fb0 (diff)
Bugfix/version file creation (#1475)
* Added creation of version file to OTRExporter * Removed creation of version file from other places * Made path to version file portable * Changed spaces to tabs in OTRExporter/Main.cpp
Diffstat (limited to 'extract_assets.py')
-rwxr-xr-xextract_assets.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/extract_assets.py b/extract_assets.py
index 7fd0573..ada4742 100755
--- a/extract_assets.py
+++ b/extract_assets.py
@@ -11,10 +11,6 @@ import argparse
def BuildOTR(xmlPath, rom, zapd_exe=None):
shutil.copytree("assets", "Extract/assets")
- checksum = int(Z64Rom(rom).checksum.value, 16)
- with open("Extract/version", "wb") as f:
- f.write(struct.pack('<L', checksum))
-
if not zapd_exe:
zapd_exe = "x64\\Release\\ZAPD.exe" if sys.platform == "win32" else "../ZAPDTR/ZAPD.out"