We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 275e557 commit 4dd58eaCopy full SHA for 4dd58ea
org/enigma/EnigmaRunner.java
@@ -193,6 +193,13 @@ public void run()
193
return;
194
}
195
196
+ try {
197
+ DRIVER.libEnableStopAPI();
198
+ } catch (UnsatisfiedLinkError ule) {
199
+ // enigma only added this recently
200
+ // sink the error for now
201
+ }
202
+
203
while (LGM.LOADING_PROJECT) {
204
try {
205
Thread.sleep(100);
org/enigma/backend/EnigmaDriver.java
@@ -30,6 +30,7 @@ protected List<String> getFieldOrder()
30
31
32
33
+ public void libEnableStopAPI();
34
public void libStopBuild();
35
36
public String libInit(EnigmaCallbacks ef);
0 commit comments