MCPcopy Create free account
hub / github.com/dhewm/dhewm3 / Com_ScriptDebugger_f

Function Com_ScriptDebugger_f

neo/framework/Common.cpp:1222–1234  ·  view source on GitHub ↗

============= Com_ScriptDebugger_f ============= */

Source from the content-addressed store, hash-verified

1220=============
1221*/
1222static void Com_ScriptDebugger_f( const idCmdArgs &args ) {
1223 // Make sure it wasnt on the command line
1224 if ( !( com_editors & EDITOR_DEBUGGER ) ) {
1225
1226 //start debugger server if needed
1227 if ( !com_enableDebuggerServer.GetBool() )
1228 com_enableDebuggerServer.SetBool( true );
1229
1230 //start debugger client.
1231 DebuggerClientLaunch();
1232
1233 }
1234}
1235
1236/*
1237=============

Callers

nothing calls this directly

Calls 3

DebuggerClientLaunchFunction · 0.50
GetBoolMethod · 0.45
SetBoolMethod · 0.45

Tested by

no test coverage detected