diff options
| author | MegaMech <MegaMech@users.noreply.github.com> | 2023-07-14 22:45:54 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-07-14 22:45:54 -0600 |
| commit | 4bb7fa372c65ae81ed6ed505cd5092790c85a835 (patch) | |
| tree | 2704b45b42a81e77d207480d7ca22b07ad94b67c | |
| parent | 93117587c149f0c73e3933be5a220e8b36f30288 (diff) | |
Update progress.py (#344)
| -rw-r--r-- | progress.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/progress.py b/progress.py index 777d753e7..cb212cabe 100644 --- a/progress.py +++ b/progress.py @@ -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) |
