============ idCVarSystemLocal::SetT_f ============ */
| 1005 | ============ |
| 1006 | */ |
| 1007 | void idCVarSystemLocal::SetT_f( const idCmdArgs &args ) { |
| 1008 | idInternalCVar *cvar; |
| 1009 | |
| 1010 | Set_f( args ); |
| 1011 | cvar = localCVarSystem.FindInternal( args.Argv( 1 ) ); |
| 1012 | if ( !cvar ) { |
| 1013 | return; |
| 1014 | } |
| 1015 | cvar->flags |= CVAR_TOOL; |
| 1016 | } |
| 1017 | |
| 1018 | /* |
| 1019 | ============ |
nothing calls this directly
no test coverage detected