============ idCVarSystemLocal::GetCVarInteger ============ */
| 710 | ============ |
| 711 | */ |
| 712 | int idCVarSystemLocal::GetCVarInteger( const char *name ) const { |
| 713 | idInternalCVar *internal = FindInternal( name ); |
| 714 | if ( internal ) { |
| 715 | return internal->GetInteger(); |
| 716 | } |
| 717 | return 0; |
| 718 | } |
| 719 | |
| 720 | /* |
| 721 | ============ |
no test coverage detected