Skip to content

Commit 4b3ea1f

Browse files
committed
Disable Broma exporter by default
1 parent 97de34a commit 4b3ea1f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/ghidra/SyncBromaScript.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ protected void doAsk(Object... args) throws Exception {
9999
this.choice("Broma file (Windows-only)", bromaFiles, f -> this.selectedBromaFile = f);
100100
this.choice("Game version", versions, v -> this.gameVersion = v);
101101
this.bool("Import from Broma", b -> this.importFromBroma = b);
102-
this.bool("Export to Broma", b -> this.exportToBroma = b);
102+
this.bool("Export to Broma", false, b -> this.exportToBroma = b);
103103
this.bool("Set optcall & membercall", isWindows, b -> this.setOptcall = b);
104104
this.bool("Sync members", b -> this.syncMembers = b);
105105
this.bool("Sync enums", b -> this.syncEnums = b);

0 commit comments

Comments
 (0)