chore(sound): clean up inlined function

This commit is contained in:
fallenoak 2025-11-29 12:26:42 -06:00
parent 873342dba8
commit c2fa5de4aa
No known key found for this signature in database
GPG Key ID: 7628F8E61AEA070D

View File

@ -730,9 +730,7 @@ void SESound::SetVolume(float volume) {
this->m_internal->m_volume = std::min(std::max(volume, 0.0f), 1.0f);
if (this->m_internal->m_fmodChannel) {
this->m_internal->m_fmodChannel->setVolume(this->m_internal->GetVolume());
}
this->m_internal->UpdateVolume();
}
void SESound::StopOrFadeOut(int32_t stop, float fadeOutTime) {