| 378 | float AbyssEngine::getMasterVolumeLevel() const { return _masterAudioLevel; } |
| 379 | |
| 380 | void AbyssEngine::setMasterVolumeLevel(const float level) { |
| 381 | _masterAudioLevel = std::clamp(level, 0.0f, 1.0f); |
| 382 | _masterAudioLevelActual = std::pow(_masterAudioLevel, 2.0f); |
| 383 | } |
| 384 | |
| 385 | float AbyssEngine::getVideoVolumeLevel() const { return _videoAudioLevel; } |
| 386 |
nothing calls this directly
no outgoing calls
no test coverage detected