From 3569ef97ade41e6ca219fb731bc108c92fd527f8 Mon Sep 17 00:00:00 2001 From: Derek Hensley Date: Sun, 22 Oct 2023 04:51:58 -0700 Subject: [PATCH] progress ld fix (#1449) --- tools/progress.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/progress.py b/tools/progress.py index 9096715aae..0626e9b651 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()