Added extra warm-start to the initial boot to help resolve one-off situations where emulator starts in a stuck state

This commit is contained in:
Brendan Robert 2015-03-29 00:33:14 -05:00
parent 8c648c42bb
commit 194ba729dc

View File

@ -3,7 +3,6 @@
* To change this template file, choose Tools | Templates * To change this template file, choose Tools | Templates
* and open the template in the editor. * and open the template in the editor.
*/ */
package jace; package jace;
import java.io.IOException; import java.io.IOException;
@ -19,6 +18,7 @@ import javafx.stage.Stage;
* @author blurry * @author blurry
*/ */
public class JaceApplication extends Application { public class JaceApplication extends Application {
static JaceApplication singleton; static JaceApplication singleton;
Stage primaryStage; Stage primaryStage;
JaceUIController controller; JaceUIController controller;
@ -46,9 +46,10 @@ public class JaceApplication extends Application {
Thread.yield(); Thread.yield();
} }
controller.connectComputer(Emulator.computer); controller.connectComputer(Emulator.computer);
Emulator.computer.warmStart();
}); });
primaryStage.setOnCloseRequest(event->{ primaryStage.setOnCloseRequest(event -> {
emulator.computer.deactivate(); Emulator.computer.deactivate();
Platform.exit(); Platform.exit();
System.exit(0); System.exit(0);
}); });