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:
Bl00D4NGEL
2025-01-02 21:09:53 +01:00
parent b1afe01927
commit 681cc243f3
4 changed files with 41 additions and 122 deletions
+4 -1
View File
@@ -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):