| 354 | } |
| 355 | |
| 356 | SoundEngine::Source* SoundEngine::GetFreeSource() |
| 357 | { |
| 358 | for( Source& s : sources_ ) |
| 359 | { |
| 360 | if( s.is_free ) |
| 361 | return &s; |
| 362 | } |
| 363 | |
| 364 | return nullptr; |
| 365 | } |
| 366 | |
| 367 | void SoundEngine::UpdateAmbientSoundState() |
| 368 | { |
nothing calls this directly
no outgoing calls
no test coverage detected