mirror of
https://github.com/n64decomp/mk64
synced 2026-07-08 12:56:13 -04:00
Removed outdated euc-jp fix (#356)
This commit is contained in:
@@ -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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user