Shutdown of effects
| 175 | |
| 176 | // Shutdown of effects |
| 177 | void EfxClose(void) { |
| 178 | for (int i = 0; i < MAX_TCEFFECTS; i++) { |
| 179 | if (TCEffects[i].type != EFX_NONE) { |
| 180 | tceffect *tce = &TCEffects[i]; |
| 181 | EfxFreeEffect(tce); |
| 182 | } |
| 183 | } |
| 184 | } |
| 185 | |
| 186 | // Destroys all the screens |
| 187 | void EfxDestroyAllScreens(void) { |
no test coverage detected