mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-11-16 11:27:33 -08:00
continue to fix off-by-one error in TextScript
This commit is contained in:
parent
806687bf69
commit
8cc5597b0b
@ -529,9 +529,9 @@ class TextScript:
|
||||
#whichever command comes first
|
||||
jump = min([jump57, jump50, jump58])
|
||||
|
||||
end_address = offset + jump - 1 #we want the address before $57
|
||||
end_address = offset + jump #we want the address before $57
|
||||
|
||||
lines = process_00_subcommands(offset+1, end_address+1, debug=debug)
|
||||
lines = process_00_subcommands(offset+1, end_address, debug=debug)
|
||||
|
||||
if show and debug:
|
||||
text = parse_text_at2(offset+1, end_address-offset+1, debug=debug)
|
||||
@ -648,9 +648,9 @@ class TextScript:
|
||||
#whichever command comes first
|
||||
jump = min([jump57, jump50, jump58])
|
||||
|
||||
end_address = offset + jump - 1 #we want the address before $57
|
||||
end_address = offset + jump #we want the address before $57
|
||||
|
||||
lines = process_00_subcommands(offset+1, end_address+1, debug=debug)
|
||||
lines = process_00_subcommands(offset+1, end_address, debug=debug)
|
||||
|
||||
if show and debug:
|
||||
text = parse_text_at2(offset+1, end_address-offset+1, debug=debug)
|
||||
@ -709,8 +709,8 @@ class TextScript:
|
||||
# sys.exit()
|
||||
|
||||
self.commands = commands
|
||||
self.last_address = offset - 1 #why -1??
|
||||
script_parse_table[original_address:offset-1] = self
|
||||
self.last_address = offset
|
||||
script_parse_table[original_address:offset] = self
|
||||
self.size = self.byte_count = self.last_address - original_address
|
||||
return commands
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user