mirror of https://github.com/zeldaret/botw.git
tools: Do not overwrite function names with j_ names either
This commit is contained in:
parent
e28ba16cc0
commit
8f8a48a1dc
|
|
@ -14,5 +14,5 @@ with open(csv_path, "r") as f:
|
|||
for fn in reader:
|
||||
addr = int(fn[0], 16)
|
||||
name = fn[3]
|
||||
if name and not name.startswith("nullsub_") and not name.startswith("sub_"):
|
||||
if name and not name.startswith(("sub_", "nullsub_", "j_")):
|
||||
idc.set_name(addr, name)
|
||||
|
|
|
|||
Loading…
Reference in New Issue