summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorrobojumper <robojumper@gmail.com>2024-10-06 19:54:10 +0200
committerrobojumper <robojumper@gmail.com>2024-11-28 20:05:35 +0100
commitbefd5331ec9770c64178a4acbc43642a7fc26c4d (patch)
treee588406659098c61cb4e77dc697d695cec9bfe26 /tools
parentba90c20b27d6def6f86bf0aace8a03d2aff9e4fe (diff)
Exclude pad_ symbols
Diffstat (limited to 'tools')
-rw-r--r--tools/ghidra_scripts/DecompMapToGhidra.py2
1 files changed, 1 insertions, 1 deletions
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