mirror of
https://github.com/mkxp-z/mkxp-z.git
synced 2025-07-01 14:15:16 +02:00
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:
parent
f0294b0390
commit
f6b67ec99e
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue