mirror of https://github.com/n64decomp/mk64.git
Update progress.py (#344)
This commit is contained in:
parent
93117587c1
commit
4bb7fa372c
|
|
@ -22,7 +22,7 @@ def GetNonMatchingFunctions(files):
|
|||
for file in files:
|
||||
# credits.c contains Japanese characters which are not supported by utf-8
|
||||
# To prevent errors it cannot be included.
|
||||
if (file == "src/credits.c"):
|
||||
if (file == "src/credits.c") or (file == "src/code_80005FD0.c"):
|
||||
continue
|
||||
with open(file) as f:
|
||||
functions += re.findall(NON_MATCHING_PATTERN, f.read(), re.DOTALL)
|
||||
|
|
|
|||
Loading…
Reference in New Issue