| 204 | } |
| 205 | |
| 206 | void afxSelectronData::pack_fx(BitStream* stream, const afxEffectList& fx, bool packed) |
| 207 | { |
| 208 | stream->writeInt(fx.size(), EFFECTS_PER_PHRASE_BITS); |
| 209 | for (int i = 0; i < fx.size(); i++) |
| 210 | writeDatablockID(stream, fx[i], packed); |
| 211 | } |
| 212 | |
| 213 | void afxSelectronData::unpack_fx(BitStream* stream, afxEffectList& fx) |
| 214 | { |
nothing calls this directly
no test coverage detected