Update progress.py (#344)

This commit is contained in:
MegaMech 2023-07-14 22:45:54 -06:00 committed by GitHub
parent 93117587c1
commit 4bb7fa372c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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)