| 19 | |
| 20 | template <typename T> |
| 21 | void AppendName( T& record, const char* name ) |
| 22 | { |
| 23 | if( record->name.find( name ) == std::string::npos ) |
| 24 | { |
| 25 | if( !record->name.empty() ) |
| 26 | { |
| 27 | record->name += ","; |
| 28 | } |
| 29 | record->name += name; |
| 30 | record->resource.SetName( record->name.c_str() ); |
| 31 | } |
| 32 | } |
| 33 | |
| 34 | bool IsValid( const Tr2BitmapDimensions& desc ) |
| 35 | { |
no test coverage detected