Remove the global volume multiplication by 0.8

This commit removes the multiplication of all OpenAL output by 0.8 added
by 4560589e25 because I feel like the 0.8
factor served no purpose other than to fix perceived problems with the
volume scale, which the commit that this pull request is part of is
supposed to address. Feel free to revert this commit if it turns out the
0.8 factor served some other purpose.
This commit is contained in:
刘皓 2024-08-07 01:06:45 -04:00
parent f0294b0390
commit f6b67ec99e
No known key found for this signature in database
GPG key ID: 7901753DB465B711

View file

@ -185,7 +185,7 @@ namespace Source
}
break;
}
alSourcef(id.al, AL_GAIN, value * 0.8f);
alSourcef(id.al, AL_GAIN, value);
}
inline void setPitch(Source::ID id, float value)