Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v2.1.30

- Disabled the DvpOverlayTable class as a temporary measure to fix the symbol tree.

## v2.1.29

- Added support for Ghidra 12.0.
Expand Down
11 changes: 6 additions & 5 deletions src/main/java/ghidra/emotionengine/EE_ElfExtension.java
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,9 @@ public void processElf(ElfLoadHelper helper, TaskMonitor monitor) throws Cancell
// case SHT_MIPS_IOPMOD_VALUE:
// section = new IopModSection(shdr, helper);
// break;
case SHT_DVP_OVERLAY_TABLE_VALUE:
section = new DvpOverlayTable(shdr, helper);
break;
// case SHT_DVP_OVERLAY_TABLE_VALUE:
// section = new DvpOverlayTable(shdr, helper);
// break;
default:
section = null;
break;
Expand All @@ -101,9 +101,10 @@ public void processElf(ElfLoadHelper helper, TaskMonitor monitor) throws Cancell
createHeapSection(helper, shdr);
}
}
} else {
section.parse(monitor);
}
//} else {
// section.parse(monitor);
//}
} catch (Exception e) {
helper.log(e);
}
Expand Down