summaryrefslogtreecommitdiff
path: root/extras/pretty_map_headers.py
diff options
context:
space:
mode:
authorBryan Bishop <kanzure@gmail.com>2012-01-03 16:09:16 -0600
committerBryan Bishop <kanzure@gmail.com>2012-01-03 16:09:16 -0600
commite93230600f36516139d34bfc3b935c3f1fd6f368 (patch)
treef2394d6441b12a7c92b538e8b506b3982dd93432 /extras/pretty_map_headers.py
parentf3bc2ccc9e94e814ed72bf7483acd9e7850654b9 (diff)
remove bank id output in pretty_map_headers, it's wrong anyway
hg-commit-id: d6a22efde56f
Diffstat (limited to 'extras/pretty_map_headers.py')
-rw-r--r--extras/pretty_map_headers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/extras/pretty_map_headers.py b/extras/pretty_map_headers.py
index 2c038fd4..867c65a5 100644
--- a/extras/pretty_map_headers.py
+++ b/extras/pretty_map_headers.py
@@ -159,7 +159,7 @@ def map_header_pretty_printer(map_header):
#formatting: hex(y)[2:].zill(2) or "%02x" % (y,)
- output = asm_name + ": ; " + address + " to " + hex(int(address, base) + byte_size) + " (" + str(byte_size) + " bytes) (bank=" + str(int(bank, base)) + ") (id=" + str(id) + ")\n"
+ output = asm_name + ": ; " + address + " to " + hex(int(address, base) + byte_size) + " (" + str(byte_size) + " bytes) (id=" + str(id) + ")\n"
output += spacing + "db $" + str(tileset).zfill(2) + " ; tileset\n"
output += spacing + "db $" + hex(y)[2:].zfill(2) + ", $" + hex(x)[2:].zfill(2) + " ; dimensions (y, x)\n"
output += spacing + "dw $" + map_pointer + ", $" + texts_pointer + ", $" + script_pointer + " ; blocks, texts, scripts\n"