From 67830385a940a09b53da260f2b1cd67baaa0ce43 Mon Sep 17 00:00:00 2001 From: David Date: Thu, 2 Nov 2023 21:51:36 -0500 Subject: [PATCH] Updated score display to be clearer --- README.md | 2 +- tools/python/score_display.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 70425d84..6957b333 100644 --- a/README.md +++ b/README.md @@ -132,7 +132,7 @@ As of November 2, 2023, this is our current score: ``` ==================================================================== ADVENTURE ONE (ASM -> C Decompilation) - --------------------- 64.04% (66.95%) Complete --------------------- + -------------- 64.04% Complete (66.95% NON_MATCHING) --------------- # Decompiled functions: 1664 # GLOBAL_ASM remaining: 181 # NON_MATCHING functions: 16 diff --git a/tools/python/score_display.py b/tools/python/score_display.py index 86f7e4a9..e69da7b6 100644 --- a/tools/python/score_display.py +++ b/tools/python/score_display.py @@ -127,7 +127,7 @@ class ScoreDisplay: if advOnePer >= 100.0: out += self.makeLine('-', dashLen, '{:5.1f}% Complete'.format(advOnePer)) else: - out += self.makeLine('-', dashLen, '{:5.2f}% ({:5.2f}%) Complete'.format(advOnePer, advOneNonMatchPer)) + out += self.makeLine('-', dashLen, '{:5.2f}% Complete ({:5.2f}% NON_MATCHING)'.format(advOnePer, advOneNonMatchPer)) out += self.makeLine(' ', dashLen, '# Decompiled functions: ' + str(totalDecompFunctions)) out += self.makeLine(' ', dashLen, '# GLOBAL_ASM remaining: ' + str(totalGlobalAsm)) out += self.makeLine(' ', dashLen, '# NON_MATCHING functions: ' + str(totalNonMatching))