Make windows console fully disable itself

This commit is contained in:
Agent X 2024-03-23 14:30:32 -04:00
parent 8425fbf5fb
commit cdafb80fbc
1 changed files with 2 additions and 1 deletions

View File

@ -322,7 +322,6 @@ void* main_game_init(void* isThreaded) {
gGameInited = true;
}
extern void djui_panel_do_host(bool reconnecting, bool playSound);
int main(int argc, char *argv[]) {
// Handle terminal arguments
@ -332,6 +331,7 @@ int main(int argc, char *argv[]) {
// Handle Windows console
if (!gCLIOpts.console) {
FreeConsole();
freopen("NUL", "w", stdout);
}
#endif
@ -386,6 +386,7 @@ int main(int argc, char *argv[]) {
configNetworkSystem = NS_SOCKET;
configHostPort = gCLIOpts.networkPort;
extern void djui_panel_do_host(bool reconnecting, bool playSound);
djui_panel_do_host(NULL, false);
} else {
network_init(NT_NONE, false);