summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--extras/analyze_incbins.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/extras/analyze_incbins.py b/extras/analyze_incbins.py
index 612c1410..b7295206 100644
--- a/extras/analyze_incbins.py
+++ b/extras/analyze_incbins.py
@@ -44,9 +44,9 @@ def load_asm(filename=os.path.join(pokered_dir, "main.asm")):
raise Exception("file doesn't exists (did you mean one among: {0}?)".format(", ".join(defaults)))
return asm
-def load_asm_if_one_exists_in(*args):
+def load_asm_if_one_exists_in(defaults):
global asm
- for f in args:
+ for f in defaults:
if os.path.exists(f):
asm = get_all_lines_from_file(f)
return True