Renamed D_* prefixed functions to func_*

This commit is contained in:
Antonio Castelli
2021-06-12 01:52:35 -07:00
parent ab9510e5c8
commit a86f811f00
24 changed files with 39 additions and 39 deletions
+3 -3
View File
@@ -11,10 +11,10 @@ MAP_FILEPATH = BUILD_DIR + '/dkr.map'
ROM_FILEPATH = BUILD_DIR + '/dkr.z64'
FUNCTIONS_TO_CALC = [
('func_8003B4BC', 'D_800DCDD0'),
('func_80068158', 'D_800DD320'),
('func_80019808', 'D_800DC690'),
('D_80024D54', 'D_800DCEA0')
('func_80024D54', 'D_800DCEA0'),
('func_8003B4BC', 'D_800DCDD0'),
('func_80068158', 'D_800DD320')
]
def getMatches(string, regex):