mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-11-16 11:27:33 -08:00
fix off-by-one error in TextScript
This commit is contained in:
parent
d37f986971
commit
806687bf69
@ -531,7 +531,7 @@ class TextScript:
|
||||
|
||||
end_address = offset + jump - 1 #we want the address before $57
|
||||
|
||||
lines = process_00_subcommands(offset+1, end_address, debug=debug)
|
||||
lines = process_00_subcommands(offset+1, end_address+1, debug=debug)
|
||||
|
||||
if show and debug:
|
||||
text = parse_text_at2(offset+1, end_address-offset+1, debug=debug)
|
||||
@ -649,7 +649,8 @@ class TextScript:
|
||||
jump = min([jump57, jump50, jump58])
|
||||
|
||||
end_address = offset + jump - 1 #we want the address before $57
|
||||
lines = process_00_subcommands(offset+1, end_address, debug=debug)
|
||||
|
||||
lines = process_00_subcommands(offset+1, end_address+1, debug=debug)
|
||||
|
||||
if show and debug:
|
||||
text = parse_text_at2(offset+1, end_address-offset+1, debug=debug)
|
||||
|
Loading…
Reference in New Issue
Block a user