| 488 | } |
| 489 | |
| 490 | void lnxsound::StopAllSounds() { |
| 491 | for (auto ¤t_slot : sound_cache) { |
| 492 | if (current_slot.m_status != SSF_UNUSED) { |
| 493 | StopSound(current_slot.m_unique_id); |
| 494 | } |
| 495 | } |
| 496 | } |
| 497 | |
| 498 | // Checks if a sound is playing (removes finished sound); |
| 499 | bool lnxsound::IsSoundInstancePlaying(int sound_uid) { |
no outgoing calls
no test coverage detected