More documentation & decompiled a couple functions in unknown_0B7A50.c

This commit is contained in:
David Benepe
2021-06-18 20:54:58 -05:00
parent aaf780e1c1
commit 0b26e4c5f4
88 changed files with 1005 additions and 833 deletions
+1 -1
View File
@@ -18,9 +18,9 @@ def find_and_rename(directory, paths):
path = directory + '/' + name
if oldSymbol in path:
newPath = path.replace(oldSymbol, newSymbol)
print('Renamed "' + path + '" to "' + newPath + '"')
try:
FileUtil.rename_file(path, newPath)
print('Renamed "' + path + '" to "' + newPath + '"')
except FileNotFoundError:
pass