diff options
| author | Nicholas Estelami <NEstelami@users.noreply.github.com> | 2022-04-24 17:10:38 -0400 |
|---|---|---|
| committer | Nicholas Estelami <NEstelami@users.noreply.github.com> | 2022-04-25 16:35:22 -0400 |
| commit | 1db11c50fab6c627839f02da3fab27d1dbefd8d1 (patch) | |
| tree | 4f4bc8eb97d046ac7ea1d714816690a85063988c /extract_assets.py | |
| parent | d5f3d7616727de4992479bb0fc933de6d10994a7 (diff) | |
Fixed bug in extract_assets.py that caused wrong XML folder to be used
Also removed duplicate python script in soh folder.
Diffstat (limited to 'extract_assets.py')
| -rwxr-xr-x | extract_assets.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/extract_assets.py b/extract_assets.py index f15cb1b..e33b65f 100755 --- a/extract_assets.py +++ b/extract_assets.py @@ -132,13 +132,13 @@ def main(): else: romToUse = roms[0] - match checkChecksum(romToUse).name: + match checkChecksum(romToUse): case Checksums.OOT_PAL_GC: xmlVer = "GC_NMQ_PAL_F" case Checksums.OOT_PAL_GC_DBG1: - xmlVer = "GC_MQ_D" - case _: # default case xmlVer = "GC_NMQ_D" + case _: # default case + xmlVer = "GC_MQ_D" if (os.path.exists("Extract")): shutil.rmtree("Extract") |
