mirror of
https://github.com/ZDoom/ZMusic.git
synced 2025-02-20 18:32:05 +00:00
- multiply master volume for module player by 4.
The default here is far too quiet compared to the other players and needs compensation.
This commit is contained in:
parent
4c223a7de7
commit
6bcbc7aeb5
1 changed files with 1 additions and 1 deletions
|
@ -1004,7 +1004,7 @@ DumbSong::DumbSong(DUH* myduh, int samplerate)
|
|||
written = 0;
|
||||
length = 0;
|
||||
start_order = 0;
|
||||
MasterVolume = (float)dumbConfig.mod_dumb_mastervolume;
|
||||
MasterVolume = (float)dumbConfig.mod_dumb_mastervolume * 4;
|
||||
if (dumbConfig.mod_samplerate != 0)
|
||||
{
|
||||
srate = dumbConfig.mod_samplerate;
|
||||
|
|
Loading…
Reference in a new issue