| 598 | } |
| 599 | |
| 600 | void afxEffectWrapperData::pack_mods(BitStream* stream, afxXM_BaseData* mods[], bool packed) |
| 601 | { |
| 602 | S32 n_mods = num_modifiers(mods); |
| 603 | stream->writeInt(n_mods, 6); |
| 604 | for (int i = 0; i < n_mods; i++) |
| 605 | writeDatablockID(stream, mods[i], packed); |
| 606 | } |
| 607 | |
| 608 | void afxEffectWrapperData::unpack_mods(BitStream* stream, afxXM_BaseData* mods[]) |
| 609 | { |
nothing calls this directly
no test coverage detected