gbz80disasm: bank 1 was being read as bank 0

This commit is contained in:
yenatch 2013-05-14 18:18:07 -04:00
parent aecce03834
commit aed0202999

View File

@ -595,9 +595,7 @@ def output_bank_opcodes(original_offset, max_byte_count=0x4000, include_last_add
load_labels()
load_rom()
bank_id = 0
if original_offset > 0x8000:
bank_id = original_offset / 0x4000
bank_id = original_offset / 0x4000
if debug: print "bank id is: " + str(bank_id)
last_hl_address = None #for when we're scanning the main map script