diff options
author | Bryan Bishop <kanzure@gmail.com> | 2012-01-24 15:37:31 -0600 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2012-01-24 15:37:31 -0600 |
commit | ed39e6aa81dc3eba6dded341b5a83f33e7e4ab59 (patch) | |
tree | 9e9c54b75ad9fbac000577e61555d50a95aaa435 /extras | |
parent | d2f4073eb9b8a39c2356be0de10867aabe95dd3a (diff) |
trainer headers are 12 bytes
hg-commit-id: bac5f2cf5ed3
Diffstat (limited to 'extras')
-rw-r--r-- | extras/pretty_trainer_headers.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extras/pretty_trainer_headers.py b/extras/pretty_trainer_headers.py index 5d0f56a9..4c10f56e 100644 --- a/extras/pretty_trainer_headers.py +++ b/extras/pretty_trainer_headers.py @@ -91,9 +91,9 @@ def pretty_print_trainer_header(address, label=None): label = "$" + hex(partial_pointer)[2:] #sys.exit(0) - #output += spacing + "dw " + label + " ; " + hex(partial_pointer) + " TextEndBattle\n" + output += spacing + "dw " + label + " ; " + hex(partial_pointer) + " TextEndBattle\n" - output += "; " + hex(address+10) + "\n" + output += "; " + hex(address+12) + "\n" return output |