Adding TTY setting in the emulator

This commit is contained in:
duckietm 2021-12-09 07:41:10 +00:00
parent 92636bbdc5
commit f167c6b6cd

View File

@ -175,10 +175,12 @@ public final class Emulator {
Runtime.getRuntime().availableProcessors() * 2);
}
Emulator.getThreading().run(() -> {
}, 1500);
// Check if console mode is true or false, default is true
if (Emulator.getConfig().getBoolean("console.mode", true)) {
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
while (!isShuttingDown && isReady) {
@ -195,6 +197,8 @@ public final class Emulator {
}
}
}
}
} catch (Exception e) {
e.printStackTrace();
}