============ idCVarSystemLocal::GetCVarBool ============ */
| 697 | ============ |
| 698 | */ |
| 699 | bool idCVarSystemLocal::GetCVarBool( const char *name ) const { |
| 700 | idInternalCVar *internal = FindInternal( name ); |
| 701 | if ( internal ) { |
| 702 | return internal->GetBool(); |
| 703 | } |
| 704 | return false; |
| 705 | } |
| 706 | |
| 707 | /* |
| 708 | ============ |
no test coverage detected