| 1567 | } |
| 1568 | |
| 1569 | ITriEffectParameter* Tr2Effect::GetResourceByName( const char* name ) const |
| 1570 | { |
| 1571 | CCP_STATS_ZONE( __FUNCTION__ ); |
| 1572 | |
| 1573 | for( auto it = m_resources.cbegin(); it != m_resources.cend(); ++it ) |
| 1574 | { |
| 1575 | ITriEffectParameter* p = *it; |
| 1576 | const char* candidate = p->GetParameterName(); |
| 1577 | if( candidate && strcmp( candidate, name ) == 0 ) |
| 1578 | { |
| 1579 | return p; |
| 1580 | } |
| 1581 | } |
| 1582 | return nullptr; |
| 1583 | } |
| 1584 | |
| 1585 | // -------------------------------------------------------------------------------------- |
| 1586 | // Description: |
no test coverage detected