Stop a looping sound and plays end snipit
| 1287 | } |
| 1288 | // Stop a looping sound and plays end snipit |
| 1289 | void hlsSystem::StopSoundLooping(int hlsound_uid) { |
| 1290 | int sound_object_index; |
| 1291 | if (m_f_hls_system_init < 1) |
| 1292 | return; // DAJ -1FIX |
| 1293 | sound_object_index = ValidateUniqueId(hlsound_uid); |
| 1294 | if (sound_object_index == -1) |
| 1295 | return; |
| 1296 | StopSound(sound_object_index, SKT_STOP_AFTER_LOOP); |
| 1297 | } |
| 1298 | void hlsSystem::StopSoundImmediate(int hlsound_uid) { |
| 1299 | int sound_object_index; |
| 1300 | if (m_f_hls_system_init < 1) |
no outgoing calls
no test coverage detected