mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
Fix volume slider bug introduced in r7773
git-svn-id: https://svn.eduke32.com/eduke32@7780 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
c233d58cf8
commit
cfa40f33df
2 changed files with 3 additions and 3 deletions
|
@ -124,7 +124,7 @@ uint32_t MV_Mix16BitStereo16(struct VoiceNode * const voice, uint32_t length)
|
||||||
|
|
||||||
uint32_t position = voice->position;
|
uint32_t position = voice->position;
|
||||||
uint32_t const rate = voice->RateScale;
|
uint32_t const rate = voice->RateScale;
|
||||||
float const volume = voice->volume;
|
float const volume = voice->volume*MV_GlobalVolume;
|
||||||
|
|
||||||
do
|
do
|
||||||
{
|
{
|
||||||
|
|
|
@ -96,7 +96,7 @@ uint32_t MV_Mix16BitMono16Stereo(struct VoiceNode * const voice, uint32_t length
|
||||||
|
|
||||||
uint32_t position = voice->position;
|
uint32_t position = voice->position;
|
||||||
uint32_t const rate = voice->RateScale;
|
uint32_t const rate = voice->RateScale;
|
||||||
float const volume = voice->volume;
|
float const volume = voice->volume*MV_GlobalVolume;
|
||||||
|
|
||||||
do
|
do
|
||||||
{
|
{
|
||||||
|
@ -127,7 +127,7 @@ uint32_t MV_Mix16BitStereo16Stereo(struct VoiceNode * const voice, uint32_t leng
|
||||||
|
|
||||||
uint32_t position = voice->position;
|
uint32_t position = voice->position;
|
||||||
uint32_t const rate = voice->RateScale;
|
uint32_t const rate = voice->RateScale;
|
||||||
float const volume = voice->volume;
|
float const volume = voice->volume*MV_GlobalVolume;
|
||||||
|
|
||||||
do
|
do
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue