ignore gFaultDrawerFont with a progress.py hack. TODO: This should be extracted, as it is an asset, not code.

This commit is contained in:
RevoSucks 2023-11-01 19:27:24 -04:00
parent 4e92be46bb
commit 6facc0125f

View File

@ -29,7 +29,9 @@ def GetFunctionsByPattern(pattern, files):
for file in files:
with open(file) as f:
functions += re.findall(pattern, f.read(), re.DOTALL)
str = re.findall(pattern, f.read(), re.DOTALL)
if "asm/non_matchings/boot/fault_drawer/sFaultDrawerFont.s" not in str:
functions += str
return functions