diff options
author | Bryan Bishop <kanzure@gmail.com> | 2012-01-12 01:31:14 -0600 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2012-01-12 01:31:14 -0600 |
commit | 418dc214d8346828cfac03ef0af0a2d298d5d318 (patch) | |
tree | 2edcbdb59ab1837d053edf76c2c08eb67c5f982d /extras/insert_texts.py | |
parent | 9984d22d5bd4b8fea3b35d497c79eec873a885a5 (diff) |
insert texts pointer labels
hg-commit-id: 18cc3e2ec33b
Diffstat (limited to 'extras/insert_texts.py')
-rw-r--r-- | extras/insert_texts.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/extras/insert_texts.py b/extras/insert_texts.py index f397a135..f850f001 100644 --- a/extras/insert_texts.py +++ b/extras/insert_texts.py @@ -106,7 +106,7 @@ def all_texts_are_tx_fars(map_id): def texts_label_pretty_printer(map_id): "output a texts label for map if all texts are TX_FARs and in the asm already" #extract_maps.map_headers[map_id]["texts"][text_id][0]["TX_FAR"] - if not all_texts_are_tx_fars(map_id): return None + #if not all_texts_are_tx_fars(map_id): return None map2 = extract_maps.map_headers[map_id] #pointer to the list of texts @@ -139,7 +139,7 @@ def texts_label_pretty_printer(map_id): return output def insert_texts_label(map_id): - if not all_texts_are_tx_fars(map_id): return None + #if not all_texts_are_tx_fars(map_id): return None map2 = extract_maps.map_headers[map_id] base_label = map_name_cleaner(map2["name"], None)[:-2] @@ -478,7 +478,8 @@ if __name__ == "__main__": process_incbins() #insert_text(0x44276, "ViridianPokeCenterText4") - insert_text(0x2461, "VermilionMartText1") + #insert_texts_label(4) + insert_all_texts_labels() if len(failed_attempts) > 0: print "-- FAILED ATTEMPTS --" |