From f8db98617c3ccdac22276a2f0e7e9c033b4b62f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Lam?= Date: Sat, 3 Oct 2020 22:47:55 +0200 Subject: [PATCH] tools: Fix local symbols being ignored by print_decomp_symbols --- tools/print_decomp_symbols.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/print_decomp_symbols.py b/tools/print_decomp_symbols.py index 03eeaa82..e60d1d1d 100755 --- a/tools/print_decomp_symbols.py +++ b/tools/print_decomp_symbols.py @@ -31,7 +31,7 @@ for entry in entries: symbol_type: str = entry[1] name = entry[2] - if (symbol_type == "T" or symbol_type == "W") and (args.all or name not in listed_decomp_symbols): + if (symbol_type == "t" or symbol_type == "T" or symbol_type == "W") and (args.all or name not in listed_decomp_symbols): c1_name = name.replace("C2", "C1") is_c2_ctor = "C2" in name and c1_name in listed_decomp_symbols and utils.are_demangled_names_equal( c1_name, name)