summaryrefslogtreecommitdiff
path: root/progress.py
diff options
context:
space:
mode:
authorMegaMech <MegaMech@users.noreply.github.com>2023-08-08 13:06:21 -0600
committerGitHub <noreply@github.com>2023-08-08 13:06:21 -0600
commite631ca224f7a082a8fe4ec7a8aea9f92c443070d (patch)
treef69e3c4dcf9005ec31c2f49238e7c13be61ad8af /progress.py
parent21a5645e128e2dddd1ecb35d8fad05edf968c6e0 (diff)
Removed outdated euc-jp fix (#356)
Diffstat (limited to 'progress.py')
-rw-r--r--progress.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/progress.py b/progress.py
index cb212cabe..692099f86 100644
--- a/progress.py
+++ b/progress.py
@@ -20,10 +20,6 @@ def GetNonMatchingFunctions(files):
functions = []
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") or (file == "src/code_80005FD0.c"):
- continue
with open(file) as f:
functions += re.findall(NON_MATCHING_PATTERN, f.read(), re.DOTALL)
@@ -33,8 +29,6 @@ def CountMipsToCFunctions(files):
functions = []
for file in files:
- if (file == "src/credits.c"):
- continue
with open(file) as f:
functions += re.findall(MIPS_TO_C_FUNC_COUNT_PATTERN, f.read(), re.DOTALL)
@@ -43,8 +37,6 @@ def CountNonMatchingFunctions(files):
functions = []
for file in files:
- if (file == "src/credits.c"):
- continue
with open(file) as f:
functions += re.findall(NON_MATCHING_FUNC_COUNT_PATTERN, f.read(), re.DOTALL)