Remove extra debugging messages

This commit is contained in:
Brendan Robert 2024-03-24 16:47:12 -05:00
parent 2ca93fc26e
commit 7f0b3c5d83
1 changed files with 0 additions and 2 deletions

View File

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