Adjusted volume levels for EPSG FM/SSG

This commit is contained in:
Perkka2 2021-03-18 14:39:29 +01:00
parent 9323ba90ae
commit 9bea4c87ee
2 changed files with 3 additions and 3 deletions

View file

@ -123,7 +123,7 @@ protected:
for (uint8_t x = 0; x < 2; x++)
{
_currentOutputs[x] /= 12;
_currentOutputs[x] /= 5;
}
UpdateOutputLevel();

View file

@ -275,8 +275,8 @@ int16_t SoundMixer::GetOutputVolume(bool forRightChannel)
#else
GetChannelOutput(AudioChannel::VRC7, forRightChannel) +
#endif
GetChannelOutput(AudioChannel::EPSG_L, forRightChannel) * 15 +
GetChannelOutput(AudioChannel::EPSG_R, forRightChannel) * 15
GetChannelOutput(AudioChannel::EPSG_L, forRightChannel) * 4 +
GetChannelOutput(AudioChannel::EPSG_R, forRightChannel) * 4
);
}