mirror of
https://github.com/pret/pokemon-reverse-engineering-tools.git
synced 2026-07-20 01:14:12 -05:00
add newlines to generate_item_constants output
original-commit-id: b0eee4c06b5d84161da04a4eb9cb05f53a8d3655
This commit is contained in:
parent
22e7806635
commit
02ce32f563
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user