diff --git a/tools/ghidra_scripts/DecompMapToGhidra.py b/tools/ghidra_scripts/DecompMapToGhidra.py index c31d2c5c..abcc1aa2 100644 --- a/tools/ghidra_scripts/DecompMapToGhidra.py +++ b/tools/ghidra_scripts/DecompMapToGhidra.py @@ -55,7 +55,7 @@ def parse_symbol(line): vAddr = objs[2] name = objs[5] - if name.startswith("gap_") or name == "*fill*" or name.startswith(".") or "........" in vAddr: + if name.startswith("pad_") or name.startswith("gap_") or name == "*fill*" or name.startswith(".") or "........" in vAddr: return None if default_sym_re.match(name): return None