| 187 | //----------------------------------------------------------------------------- |
| 188 | |
| 189 | void SFXProfile::unpackData(BitStream* stream) |
| 190 | { |
| 191 | Parent::unpackData( stream ); |
| 192 | |
| 193 | char buffer[256]; |
| 194 | stream->readString( buffer ); |
| 195 | mFilename = buffer; |
| 196 | |
| 197 | mPreload = stream->readFlag(); |
| 198 | } |
| 199 | |
| 200 | //----------------------------------------------------------------------------- |
| 201 |
nothing calls this directly
no test coverage detected