============ idCVarSystemLocal::SetA_f ============ */
| 1021 | ============ |
| 1022 | */ |
| 1023 | void idCVarSystemLocal::SetA_f( const idCmdArgs &args ) { |
| 1024 | idInternalCVar *cvar; |
| 1025 | |
| 1026 | Set_f( args ); |
| 1027 | cvar = localCVarSystem.FindInternal( args.Argv( 1 ) ); |
| 1028 | if ( !cvar ) { |
| 1029 | return; |
| 1030 | } |
| 1031 | |
| 1032 | // FIXME: enable this for ship, so mods can store extra data |
| 1033 | // but during development we don't want obsolete cvars to continue |
| 1034 | // to be saved |
| 1035 | // cvar->flags |= CVAR_ARCHIVE; |
| 1036 | } |
| 1037 | |
| 1038 | /* |
| 1039 | ============ |
nothing calls this directly
no test coverage detected