1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-07-05 15:34:41 +00:00

Move roms to build folder (#1651)

* Move built roms to build directory, along with rename map and linker script

* PR review

* sym_info fix

* Revert docs/tutorial/data.md change
This commit is contained in:
Derek Hensley 2024-02-02 13:34:20 -08:00 committed by GitHub
parent 8db76a27da
commit 5785c7adfb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 24 additions and 22 deletions

View file

@ -37,8 +37,8 @@ def firstDiffMain():
buildFolder = Path("build") / args.oot_version
BUILTROM = Path(f"oot-{args.oot_version}.z64")
BUILTMAP = buildFolder / "z64.map"
BUILTROM = buildFolder / f"oot-{args.oot_version}.z64"
BUILTMAP = buildFolder / f"oot-{args.oot_version}.map"
EXPECTEDROM = Path(f"baseroms/{args.oot_version}/baserom-decompressed.z64")
EXPECTEDMAP = "expected" / BUILTMAP