fix error in map header asm (db -> dw)

hg-commit-id: 7c7e9ad3e7a8
This commit is contained in:
Bryan Bishop 2012-01-02 22:23:58 -06:00
parent d74daf3273
commit 4c44702edb

View file

@ -124,7 +124,7 @@ def connection_pretty_printer(connections):
window_pointer = connection["window_pointer"][2:] window_pointer = connection["window_pointer"][2:]
output += spacing + "db $" + map_id + " ; some map\n" output += spacing + "db $" + map_id + " ; some map\n"
output += spacing + "db $" + connected_map_tile_pointer + ", $" + current_map_tile_pointer + " ; pointers (connected, current) (strip)\n" output += spacing + "dw $" + connected_map_tile_pointer + ", $" + current_map_tile_pointer + " ; pointers (connected, current) (strip)\n"
output += spacing + "db $" + bigness + ", $" + width + " ; bigness, width\n" output += spacing + "db $" + bigness + ", $" + width + " ; bigness, width\n"
output += spacing + "db $" + y + ", $" + x + " ; alignments (y, x)\n" output += spacing + "db $" + y + ", $" + x + " ; alignments (y, x)\n"
output += spacing + "dw $" + window_pointer + " ; window\n\n" output += spacing + "dw $" + window_pointer + " ; window\n\n"