This commit is contained in:
mrpotatogun 2023-09-04 14:13:31 -04:00 committed by GitHub
commit a041803a4d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,6 +3,8 @@ import sys
import os
import json
#respect make setting PYTHON to use, instead of assuming linux convention
PYTHON_BIN=os.getenv('PYTHON')
def read_asset_map():
with open("assets.json") as f:
@ -174,7 +176,7 @@ def main():
if mio0 == "@sound":
rom = roms[lang]
args = [
"python3",
PYTHON_BIN,
"tools/disassemble_sound.py",
"baserom." + lang + ".z64",
]