mirror of
https://github.com/izzy2lost/Diddy-Kong-Racing.git
synced 2026-06-19 01:16:26 -07:00
refac: split verification steps into separate GH jobs. Fix score.py script crashing because of missing key. Update README to include ROM hash
This commit is contained in:
@@ -92,7 +92,10 @@ class ScoreFileMatch:
|
||||
self.comment = comment
|
||||
self.functionName = functionName
|
||||
self.isDocumented = (comment != None) and not functionName.startswith("func_")
|
||||
self.size = MAP_FILE.functionSizes[functionName]
|
||||
if functionName in MAP_FILE.functionSizes:
|
||||
self.size = MAP_FILE.functionSizes[functionName]
|
||||
else:
|
||||
self.size = 0
|
||||
|
||||
class ScoreFile:
|
||||
def __init__(self, filepath):
|
||||
|
||||
Reference in New Issue
Block a user