disable goal networking when not in debug mode (#1602)

This commit is contained in:
ManDude 2022-07-04 18:52:05 +01:00 committed by GitHub
parent 7f05974956
commit 8caa5bfa70
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 14 additions and 3 deletions

View File

@ -63,6 +63,13 @@
"name" : "Run - Runtime (boot)",
"args" : [ "-boot", "-fakeiso", "-debug", "-v" ]
},
{
"type" : "default",
"project" : "CMakeLists.txt",
"projectTarget" : "gk.exe (bin\\gk.exe)",
"name" : "Run - Runtime (boot no debug)",
"args" : [ "-boot", "-fakeiso", "-v" ]
},
{
"type" : "default",
"project" : "CMakeLists.txt",

View File

@ -336,9 +336,9 @@ int InitMachine() {
// }
// do this always
// if (MasterDebug) { // connect to GOAL compiler
InitGoalProto();
//}
if (MasterDebug) { // connect to GOAL compiler
InitGoalProto();
}
lg::info("InitSound");
InitSound(); // do nothing!

View File

@ -0,0 +1,4 @@
@echo off
cd ..\..
out\build\Release\bin\gk -boot -fakeiso -v
pause