diff options
author | Bryan Bishop <kanzure@gmail.com> | 2012-04-27 15:47:51 -0500 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2012-04-27 15:47:51 -0500 |
commit | 02ce32f563ee1ca8ebfdefe3e18f8233abdc0b96 (patch) | |
tree | 5e15323a6a7e723322b8c449ee3e42f6c1393382 /crystal.py | |
parent | 22e78066351b51285ad3ab3087ad066a3c0fef84 (diff) |
add newlines to generate_item_constants output
original-commit-id: b0eee4c06b5d84161da04a4eb9cb05f53a8d3655
Diffstat (limited to 'crystal.py')
-rw-r--r-- | crystal.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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): |