From 1e04aba72d9d7fd5452488a079a744a0ecfa758a Mon Sep 17 00:00:00 2001 From: Elliot Nunn Date: Sun, 4 Aug 2019 10:51:13 +0800 Subject: [PATCH] Fix a very bad OldWorld ROM regression --- tbxi/dispatcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tbxi/dispatcher.py b/tbxi/dispatcher.py index b28d2dc..cc127d7 100644 --- a/tbxi/dispatcher.py +++ b/tbxi/dispatcher.py @@ -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: