mirror of
https://github.com/open-goal/jak-project.git
synced 2024-11-27 08:20:47 +00:00
disable goal networking when not in debug mode (#1602)
This commit is contained in:
parent
7f05974956
commit
8caa5bfa70
@ -63,6 +63,13 @@
|
|||||||
"name" : "Run - Runtime (boot)",
|
"name" : "Run - Runtime (boot)",
|
||||||
"args" : [ "-boot", "-fakeiso", "-debug", "-v" ]
|
"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",
|
"type" : "default",
|
||||||
"project" : "CMakeLists.txt",
|
"project" : "CMakeLists.txt",
|
||||||
|
@ -336,9 +336,9 @@ int InitMachine() {
|
|||||||
// }
|
// }
|
||||||
|
|
||||||
// do this always
|
// do this always
|
||||||
// if (MasterDebug) { // connect to GOAL compiler
|
if (MasterDebug) { // connect to GOAL compiler
|
||||||
InitGoalProto();
|
InitGoalProto();
|
||||||
//}
|
}
|
||||||
|
|
||||||
lg::info("InitSound");
|
lg::info("InitSound");
|
||||||
InitSound(); // do nothing!
|
InitSound(); // do nothing!
|
||||||
|
4
scripts/batch/gk-release.bat
Normal file
4
scripts/batch/gk-release.bat
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
@echo off
|
||||||
|
cd ..\..
|
||||||
|
out\build\Release\bin\gk -boot -fakeiso -v
|
||||||
|
pause
|
Loading…
Reference in New Issue
Block a user