============ idCVarSystemLocal::ResetFlaggedVariables ============ */
| 823 | ============ |
| 824 | */ |
| 825 | void idCVarSystemLocal::ResetFlaggedVariables( int flags ) { |
| 826 | for( int i = 0; i < cvars.Num(); i++ ) { |
| 827 | idInternalCVar *cvar = cvars[i]; |
| 828 | if ( cvar->GetFlags() & flags ) { |
| 829 | cvar->Set( NULL, true, true ); |
| 830 | } |
| 831 | } |
| 832 | } |
| 833 | |
| 834 | /* |
| 835 | ============ |
no test coverage detected