Remove extra debugging messages

This commit is contained in:
Brendan Robert 2024-03-24 16:47:12 -05:00
parent 2ca93fc26e
commit 7f0b3c5d83

View File

@ -188,7 +188,6 @@ public class LawlessLegends extends Application {
private void configureEmulatorForGame() { private void configureEmulatorForGame() {
Emulator.withComputer(c -> { Emulator.withComputer(c -> {
System.out.println("CONFIUGRE EMULATOR START");
c.enableHints = false; c.enableHints = false;
c.clockEnabled = true; c.clockEnabled = true;
c.joy1enabled = false; c.joy1enabled = false;
@ -208,7 +207,6 @@ public class LawlessLegends extends Application {
if (c.PRODUCTION_MODE) { if (c.PRODUCTION_MODE) {
((LawlessImageTool) c.getUpgradeHandler()).loadGame(); ((LawlessImageTool) c.getUpgradeHandler()).loadGame();
} }
System.out.println("CONFIUGRE EMULATOR END");
}); });
} }
} }