You've already forked pokecrystal-board
mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-09-08 08:13:02 -07:00
fix off-by-one error in TextScript
This commit is contained in:
@@ -531,7 +531,7 @@ class TextScript:
|
|||||||
|
|
||||||
end_address = offset + jump - 1 #we want the address before $57
|
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:
|
if show and debug:
|
||||||
text = parse_text_at2(offset+1, end_address-offset+1, debug=debug)
|
text = parse_text_at2(offset+1, end_address-offset+1, debug=debug)
|
||||||
@@ -649,7 +649,8 @@ class TextScript:
|
|||||||
jump = min([jump57, jump50, jump58])
|
jump = min([jump57, jump50, jump58])
|
||||||
|
|
||||||
end_address = offset + jump - 1 #we want the address before $57
|
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:
|
if show and debug:
|
||||||
text = parse_text_at2(offset+1, end_address-offset+1, debug=debug)
|
text = parse_text_at2(offset+1, end_address-offset+1, debug=debug)
|
||||||
|
Reference in New Issue
Block a user