mirror of https://github.com/zeldaret/botw.git
tools: Ignore excluded lib functions for rename script
This commit is contained in:
parent
79505a1b23
commit
38e5e47b07
|
@ -14,7 +14,7 @@ with open(csv_path, "r") as f:
|
|||
for fn in reader:
|
||||
addr = int(fn[0], 16)
|
||||
decomp_name = fn[3]
|
||||
if not decomp_name:
|
||||
if not decomp_name or decomp_name == "l":
|
||||
continue
|
||||
|
||||
# Get rid of status markers.
|
||||
|
|
Loading…
Reference in New Issue