mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-09-16 18:30:50 +12:00
fix error in map header asm (db -> dw)
hg-commit-id: 7c7e9ad3e7a8
This commit is contained in:
parent
d74daf3273
commit
4c44702edb
|
@ -124,7 +124,7 @@ def connection_pretty_printer(connections):
|
|||
window_pointer = connection["window_pointer"][2:]
|
||||
|
||||
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 $" + y + ", $" + x + " ; alignments (y, x)\n"
|
||||
output += spacing + "dw $" + window_pointer + " ; window\n\n"
|
||||
|
|
Loading…
Reference in a new issue