1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2024-11-15 06:06:04 +00:00

Fix tools/ido_block_numbers.py (#2037)

This commit is contained in:
cadmic 2024-08-12 11:17:04 -07:00 committed by GitHub
parent 755604d5ff
commit f6338bab1f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -538,7 +538,7 @@ def main():
file=sys.stderr, file=sys.stderr,
) )
sys.exit(1) sys.exit(1)
print(f"Compiler command: {shlex.join(compiler_command_line)}", file=sys.stderr) print(f"Compiler command: {shlex.join(command_line)}", file=sys.stderr)
symbol_table, ucode = run_cfe(command_line, args.keep_files) symbol_table, ucode = run_cfe(command_line, args.keep_files)
print_symbol_table(symbol_table) print_symbol_table(symbol_table)