Skip to content

Commit

Permalink
fixed one time analysis (instead of analysis twice)
Browse files Browse the repository at this point in the history
  • Loading branch information
RadWolfie authored and mborgerson committed Sep 21, 2024
1 parent c5409ed commit 861657d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main/java/XbeLoader/XbeXbSymbolDatabaseAnalyzer.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
import generic.jar.ResourceFile;
import ghidra.GhidraApplicationLayout;
import ghidra.app.services.AbstractAnalyzer;
import ghidra.app.services.AnalysisPriority;
import ghidra.app.services.AnalyzerType;
import ghidra.app.util.importer.MessageLog;
import ghidra.framework.Application;
Expand Down Expand Up @@ -54,6 +55,7 @@ public class XbeXbSymbolDatabaseAnalyzer extends AbstractAnalyzer {

public XbeXbSymbolDatabaseAnalyzer() {
super("Xbox Symbol Database Analyzer", "Scan XBE for known library functions", AnalyzerType.BYTE_ANALYZER);
setPriority(AnalysisPriority.DISASSEMBLY.before());
}

@Override
Expand Down

0 comments on commit 861657d

Please sign in to comment.