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
+1 -1
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)