------------------------- FX_FreeMember -------------------------
| 134 | // FX_FreeMember |
| 135 | //------------------------- |
| 136 | static void FX_FreeMember( SEffectList *obj ) |
| 137 | { |
| 138 | obj->mEffect->Die(); |
| 139 | delete obj->mEffect; |
| 140 | obj->mEffect = 0; |
| 141 | |
| 142 | // May as well mark this to be used next |
| 143 | nextValidEffect = obj; |
| 144 | |
| 145 | activeFx--; |
| 146 | } |
| 147 | |
| 148 | |
| 149 | //------------------------- |
no test coverage detected