From 09fb956ba6707c99a05ea2f639e9b42424bf4141 Mon Sep 17 00:00:00 2001 From: espeon65536 Date: Mon, 15 Nov 2021 08:46:23 -0600 Subject: [PATCH] OoT Adjuster: remove -comp from patched output rom name --- OoTAdjuster.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OoTAdjuster.py b/OoTAdjuster.py index 9df4ef6e..a9746e9a 100644 --- a/OoTAdjuster.py +++ b/OoTAdjuster.py @@ -226,8 +226,8 @@ def adjust(args): rom.write_byte(rom.sym('DEATH_LINK'), args.deathlink) # Output new file path_pieces = os.path.splitext(args.rom) - decomp_path = path_pieces[0] + '-adjusted.n64' - comp_path = path_pieces[0] + '-adjusted-comp.n64' + decomp_path = path_pieces[0] + '-adjusted-decomp.n64' + comp_path = path_pieces[0] + '-adjusted.n64' rom.write_to_file(decomp_path) compress_rom_file(decomp_path, comp_path) os.remove(decomp_path)