summaryrefslogtreecommitdiff
path: root/progress.py
diff options
context:
space:
mode:
authorMegaMech <MegaMech@users.noreply.github.com>2024-04-12 19:16:13 -0600
committerGitHub <noreply@github.com>2024-04-12 19:16:13 -0600
commita67d099d3644f551faccfe22a4bcd39d2f1c3797 (patch)
treec5013eb408660d42e5cdb829ad80355ffde910db /progress.py
parente2c19fd4bc8e5f7db8e64629491b80a63c53ee98 (diff)
Action Renames (#606)
* Update README.md * Update progress.py
Diffstat (limited to 'progress.py')
-rw-r--r--progress.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/progress.py b/progress.py
index b1785cd6a..0b002aa2a 100644
--- a/progress.py
+++ b/progress.py
@@ -540,7 +540,7 @@ elif args.format == 'badge':
badge_game_pct = badge(left_text="Game progress", right_text=str(round(gamePct, 2))+"%", right_color="green")
with open("docs/html/game_progress.svg", "w") as f:
f.write(badge_game_pct)
- badge_asm_funcs = badge(left_text="ASM functions", right_text=str(TotalGlobalAsmFunctions), right_color="blue")
+ badge_asm_funcs = badge(left_text="WIP functions", right_text=str(TotalGlobalAsmFunctions), right_color="blue")
with open("docs/html/asm_funcs.svg", "w") as f:
f.write(badge_asm_funcs)
badge_nonmatching_funcs = badge(left_text="NON_MATCHING functions", right_text=str(TotalNonMatchingFunctions), right_color="blue")