| 398 | } |
| 399 | |
| 400 | void StopAllSounds() |
| 401 | { |
| 402 | for (int i = 0; i < SOUND_MAX_CHANNELS; i++) |
| 403 | Sound_FreeSlot(i, SOUND_XFADETIME_CUTSOUND); |
| 404 | |
| 405 | ZeroMemory(SoundSlot, (sizeof(SoundEffectSlot) * SOUND_MAX_CHANNELS)); |
| 406 | } |
| 407 | |
| 408 | void FreeSamples() |
| 409 | { |
no test coverage detected