diff options
Diffstat (limited to 'extras/crystal.py')
-rw-r--r-- | extras/crystal.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extras/crystal.py b/extras/crystal.py index d7b7d2b74..924f2b6f0 100644 --- a/extras/crystal.py +++ b/extras/crystal.py @@ -1110,7 +1110,7 @@ def generate_item_constants(): for (id, item) in item_constants.items(): val = ("$%.2x"%id).upper() while len(item)<13: item+= " " - output += item + " EQU " + val + output += item + " EQU " + val + "\n" return output def find_all_text_pointers_in_script_engine_script(script, bank=None, debug=False): |