OoT: fix patching deltas when run from another folder

This commit is contained in:
Fabian Dill 2022-04-02 05:16:10 +02:00 committed by Fabian Dill
parent fb2e780c56
commit d1f0a29a02
1 changed files with 1 additions and 1 deletions

View File

@ -226,7 +226,7 @@ async def patch_and_run_game(apz5_file):
decomp_path = base_name + '-decomp.z64'
comp_path = base_name + '.z64'
# Load vanilla ROM, patch file, compress ROM
rom = Rom(Utils.get_options()["oot_options"]["rom_file"])
rom = Rom(Utils.local_path(Utils.get_options()["oot_options"]["rom_file"]))
apply_patch_file(rom, apz5_file)
rom.write_to_file(decomp_path)
os.chdir(data_path("Compress"))