============= Com_ScriptDebugger_f ============= */
| 1220 | ============= |
| 1221 | */ |
| 1222 | static 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 | ============= |
nothing calls this directly
no test coverage detected