mirror of
https://github.com/HarbourMasters/2ship2harkinian.git
synced 2024-11-23 22:19:53 +00:00
ignore gFaultDrawerFont with a progress.py hack. TODO: This should be extracted, as it is an asset, not code.
This commit is contained in:
parent
4e92be46bb
commit
6facc0125f
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user