///////////////////////////////////////////////////////
| 53 | |
| 54 | //////////////////////////////////////////////////////////// |
| 55 | void SoundSource::setVolume(float volume) |
| 56 | { |
| 57 | if (auto* sound = static_cast<ma_sound*>(getSound())) |
| 58 | ma_sound_set_volume(sound, volume * 0.01f); |
| 59 | } |
| 60 | |
| 61 | |
| 62 | //////////////////////////////////////////////////////////// |
no outgoing calls
no test coverage detected