diff options
author | luckytyphlosion <alan.rj.huang@gmail.com> | 2016-05-30 19:59:25 -0400 |
---|---|---|
committer | luckytyphlosion <alan.rj.huang@gmail.com> | 2016-05-30 19:59:25 -0400 |
commit | f286f17bde37d0469b1e0203cc45cc69cea4a4c0 (patch) | |
tree | e563c4116a0edbf4d1adee0123e52a970a09aac8 | |
parent | 6d983352cb21708b871d403d4a095342ecd55a4a (diff) |
Variable typo
-rw-r--r-- | pokemontools/gbz80disasm.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pokemontools/gbz80disasm.py b/pokemontools/gbz80disasm.py index b115b45..50e1f48 100644 --- a/pokemontools/gbz80disasm.py +++ b/pokemontools/gbz80disasm.py @@ -850,7 +850,7 @@ class Disassembler(object): if include_last_address: output += "; " + hex(offset) - return [output, offset, stop_offset, byte_labels, data_labels] + return [output, offset, stop_offset, byte_labels, data_tables] def get_raw_addr(addr): if addr: |