Skip to content

Commit 9e49499

Browse files
Disable Old EGM (#80)
Don't show it in the LGM file choosers until it is reworked and stabilized.
1 parent 03093f8 commit 9e49499

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

org/enigma/EnigmaRunner.java

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -341,8 +341,12 @@ void addResourceHook()
341341
FileChooser.readers.add(io);
342342
FileChooser.writers.add(io);
343343

344-
Listener.getInstance().fc.addOpenFilters(io);
345-
Listener.getInstance().fc.addSaveFilters(io);
344+
// TODO: Disabled until somebody can figure out what the HELL is going on!
345+
// Old EGM was a bad mix of binary and text serialization that led to extreme
346+
// frustrations, and it should not be enabled until it is cleaned up,
347+
// converted to text, versions the binaries, or is replaced with the new libEGM
348+
//Listener.getInstance().fc.addOpenFilters(io);
349+
//Listener.getInstance().fc.addSaveFilters(io);
346350

347351
LGM.addPluginResource(new EnigmaSettingsPluginResource());
348352
}

0 commit comments

Comments
 (0)