diff options
| author | Bryan Bishop <kanzure@gmail.com> | 2012-01-17 15:39:36 -0600 |
|---|---|---|
| committer | Bryan Bishop <kanzure@gmail.com> | 2012-01-17 15:39:36 -0600 |
| commit | ffdd92db777e410a0c365f7b301f0a5a5bdc56ca (patch) | |
| tree | c6ebcd3f17d75325210d023597f81cf932a66720 /extras/analyze_texts.py | |
| parent | fix insert_texts for pre-existing TX_FAR target labels (diff) | |
| download | pokeyellow-ffdd92db777e410a0c365f7b301f0a5a5bdc56ca.tar.gz pokeyellow-ffdd92db777e410a0c365f7b301f0a5a5bdc56ca.tar.xz pokeyellow-ffdd92db777e410a0c365f7b301f0a5a5bdc56ca.zip | |
skip some incbins from analyze_texts for 0-size intervals
hg-commit-id: a63d92b4534c
Diffstat (limited to 'extras/analyze_texts.py')
| -rw-r--r-- | extras/analyze_texts.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/extras/analyze_texts.py b/extras/analyze_texts.py index b843581e..fbf320fc 100644 --- a/extras/analyze_texts.py +++ b/extras/analyze_texts.py @@ -616,6 +616,7 @@ def scan_rom_for_tx_fars(printer=True): incbin = analyze_incbins.processed_incbins[incbin_line_number] start_address = incbin["start"] end_address = incbin["end"] + if incbin["interval"] == 0: continue #skip this one subrom = rom[start_address:end_address] for address in range(start_address, end_address): |
