Add VolumeModifier support to music.

This commit is contained in:
Paul Chote
2019-01-29 19:15:28 +00:00
committed by Oliver Brakmann
parent 810aa744bf
commit b71c080285
2 changed files with 5 additions and 1 deletions

View File

@@ -214,7 +214,7 @@ namespace OpenRA
Func<ISoundFormat, ISound> stream = soundFormat => soundEngine.Play2DStream(
soundFormat.GetPCMInputStream(), soundFormat.Channels, soundFormat.SampleBits, soundFormat.SampleRate,
false, true, WPos.Zero, MusicVolume);
false, true, WPos.Zero, MusicVolume * m.VolumeModifier);
music = LoadSound(m.Filename, stream);
if (music == null)