summaryrefslogtreecommitdiff
path: root/tools/progress.py
diff options
context:
space:
mode:
authorDerek Hensley <hensley.derek58@gmail.com>2023-10-22 04:51:58 -0700
committerGitHub <noreply@github.com>2023-10-22 08:51:58 -0300
commit3569ef97ade41e6ca219fb731bc108c92fd527f8 (patch)
tree0387971a1f290d6b9e9950bf6abb20a2190de5af /tools/progress.py
parentec86f10b0f933fd848036e149d1ef34f28571c37 (diff)
progress ld fix (#1449)
Diffstat (limited to 'tools/progress.py')
-rwxr-xr-xtools/progress.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/progress.py b/tools/progress.py
index 9096715aa..0626e9b65 100755
--- a/tools/progress.py
+++ b/tools/progress.py
@@ -239,7 +239,7 @@ for line in map_file:
eprint(f"Found file '{obj_file}' in unknown asset category '{assetCat}'")
eprint("I'll ignore this for now, but please fix it!")
- elif len(line_split) == 2 and line_split[0].startswith("0x00000000"):
+ elif len(line_split) == 2 and line_split[0].startswith("0x"):
varVramStr, varName = line_split
varVram = int(varVramStr, 16)
varName = varName.strip()