summaryrefslogtreecommitdiff
path: root/extras/analyze_incbins.py
diff options
context:
space:
mode:
authorBryan Bishop <kanzure@gmail.com>2012-01-11 12:20:16 -0600
committerBryan Bishop <kanzure@gmail.com>2012-01-11 12:20:16 -0600
commit167d9baac351df5fe2af539bd9fff3ccdfe995fc (patch)
tree09e53a7db1480de06acc3fccaaab2a9bb2445078 /extras/analyze_incbins.py
parentcd59b24ca904fe0716e66fa7763e14c68ba52eda (diff)
fix asm for route 9 texts 1 through 9 inclusive
hg-commit-id: e139dfb9a032
Diffstat (limited to 'extras/analyze_incbins.py')
-rw-r--r--extras/analyze_incbins.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/extras/analyze_incbins.py b/extras/analyze_incbins.py
index 4d0c3fce..a4ca2b2b 100644
--- a/extras/analyze_incbins.py
+++ b/extras/analyze_incbins.py
@@ -7,7 +7,11 @@ import sys, os
from copy import copy, deepcopy
import subprocess
from extract_maps import rom, assert_rom, load_rom, calculate_pointer, load_map_pointers, read_all_map_headers, map_headers
-from pretty_map_headers import map_header_pretty_printer, map_name_cleaner
+
+try:
+ from pretty_map_headers import map_header_pretty_printer, map_name_cleaner
+except Exception:
+ pass
#store each line of source code here
asm = None