audio volume-related fix

This commit is contained in:
MihailRis 2024-03-15 01:24:57 +03:00
parent ce687a67a3
commit a82476949c

View File

@ -232,7 +232,7 @@ State ALSpeaker::getState() const {
}
float ALSpeaker::getVolume() const {
return AL::getSourcef(source, AL_GAIN);
return volume;
}
void ALSpeaker::setVolume(float volume) {
@ -258,6 +258,7 @@ void ALSpeaker::setLoop(bool loop) {
void ALSpeaker::play() {
paused = false;
stopped = false;
AL_CHECK(alSourcef(source, AL_GAIN, 0.0f));
AL_CHECK(alSourcePlay(source));
}