mirror of
https://github.com/pret/pokemon-reverse-engineering-tools.git
synced 2026-08-25 19:54:06 -05:00
fix bug in find_all_text_pointers_in_script_engine_script
original-commit-id: 35ecd20aa26a382095300dc4f345f1f074e4fb5e
This commit is contained in:
@@ -1123,9 +1123,9 @@ def find_all_text_pointers_in_script_engine_script(script, bank):
|
||||
elif command["type"] == 0x4C:
|
||||
addresses.add(command["pointer"])
|
||||
elif command["type"] == 0x51:
|
||||
addresses.add(command["text_pointer"])
|
||||
addresses.add(command["pointer"])
|
||||
elif command["type"] == 0x53:
|
||||
addresses.add(command["text_pointer"])
|
||||
addresses.add(command["pointer"])
|
||||
elif command["type"] == 0x64:
|
||||
addresses.add(command["won_pointer"])
|
||||
addresses.add(command["lost_pointer"])
|
||||
|
||||
Reference in New Issue
Block a user