Compare commits

..

No commits in common. "88d10a9a2e70f2aa280cf97d26c0d538da4df75c" and "bd69031a3dc029215451c788ad82fb2f45a45118" have entirely different histories.

7 changed files with 10 additions and 9 deletions

4
.gitignore vendored
View File

@ -13,10 +13,8 @@ windows_libs_other/
.venv
*.gpr
*.rep
.vscode
.clangd
ACP_Ray2/
build/
# game_re/
windows_libs/
windows_libs/

View File

@ -6,7 +6,14 @@
"Rayman4Dev": true,
"vbox": true,
},
// Use the redhat java extension
// "java.jdt.ls.vmargs": "-XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx1G -Xms100m -Xlog:disable -jar C:\\Projects\\ghidra_11.1.2_PUBLIC\\Ghidra\\Features\\Base\\lib\\Base.jar"
// "java.configuration.runtimes": [
// {
// "name": "JavaSE-1.8",
// "path": "C:\\Program Files\\Microsoft\\jdk-17.0.11.9-hotspot\\",
// "sources": "C:\\Projects\\ghidra_11.1.2_PUBLIC\\Ghidra\\Features\\Base\\lib\\Base.jar"
// }
// ],
"java.project.referencedLibraries": [
"C:\\Projects\\ghidra_11.1.2_PUBLIC\\Ghidra\\Features\\Base\\lib\\Base.jar",
"C:\\Projects\\ghidra_11.1.2_PUBLIC\\Ghidra\\Features\\Decompiler\\lib\\Decompiler.jar",

View File

@ -1,6 +1,6 @@
// Script to export decompiled C code from Ghidra
// @category _Reman3
// @menupath Reman3.Decompile All
// @menupath Tools.Reman3.Decompile All
import java.io.File;
import java.io.PrintWriter;
@ -500,10 +500,6 @@ public class Decompile extends GhidraScript {
throw new Exception("Output directory does not exist: " + RecompileConfig.INSTANCE.outputDir);
}
// Make sure to create output folders
RecompileConfig.INSTANCE.dirDecompFix.mkdirs();
RecompileConfig.INSTANCE.dirDecompAuto.mkdirs();
buildFunctionBlacklist();
List<Function> functions = new ArrayList<>();