diff options
author | luckytyphlosion <alan.rj.huang@gmail.com> | 2016-05-30 20:07:21 -0400 |
---|---|---|
committer | luckytyphlosion <alan.rj.huang@gmail.com> | 2016-05-30 20:07:21 -0400 |
commit | 0e1798937a4bf723813574281d0dc12c471c9199 (patch) | |
tree | e563c4116a0edbf4d1adee0123e52a970a09aac8 | |
parent | 426c6b863706e4e0de0ea8d1a7c22904b76f98bb (diff) | |
parent | f286f17bde37d0469b1e0203cc45cc69cea4a4c0 (diff) |
Merge pull request #100 from luckytyphlosion/master
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: |