mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-25 09:45:02 +00:00
baserom_original -> input
This commit is contained in:
parent
53b27d9992
commit
d9199462b6
1 changed files with 5 additions and 5 deletions
|
@ -18,10 +18,10 @@ if path.exists("baserom.z64"):
|
||||||
|
|
||||||
# Determine if we have a ROM file
|
# Determine if we have a ROM file
|
||||||
romFileName = ""
|
romFileName = ""
|
||||||
if path.exists("baserom_original.z64"):
|
if path.exists("input.z64"):
|
||||||
romFileName = "baserom_original.z64"
|
romFileName = "input.z64"
|
||||||
elif path.exists("baserom_original.n64"):
|
elif path.exists("input.n64"):
|
||||||
romFileName = "baserom_original.n64"
|
romFileName = "input.n64"
|
||||||
|
|
||||||
# Read in the original ROM
|
# Read in the original ROM
|
||||||
if romFileName != "":
|
if romFileName != "":
|
||||||
|
@ -47,7 +47,7 @@ if romFileName != "":
|
||||||
|
|
||||||
print("Byte swapping done.")
|
print("Byte swapping done.")
|
||||||
else:
|
else:
|
||||||
print("Error: Could not find baserom_original.z64/baserom_original.n64.")
|
print("Error: Could not find input.z64/input.n64.")
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
# Strip the overdump
|
# Strip the overdump
|
||||||
|
|
Loading…
Reference in a new issue