Fix a very bad OldWorld ROM regression

This commit is contained in:
Elliot Nunn 2019-08-04 10:51:13 +08:00
parent e7d0480001
commit 1e04aba72d
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ def dump(binary, dest_path, toplevel=False):
try:
arg = binary
if isinstance(arg, tuple) and fmt != 'bootinfo': arg = arg[0] # strip found resource fork
mod.dump(binary, dest_path)
mod.dump(arg, dest_path)
print(fmt)
break
except WrongFormat: