add newlines to generate_item_constants output

This commit is contained in:
Bryan Bishop 2012-04-27 15:47:51 -05:00
parent 9672e960ee
commit b0eee4c06b

View File

@ -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):