Adjusted volume levels for EPSG FM/SSG
This commit is contained in:
parent
9323ba90ae
commit
9bea4c87ee
2 changed files with 3 additions and 3 deletions
|
@ -123,7 +123,7 @@ protected:
|
|||
|
||||
for (uint8_t x = 0; x < 2; x++)
|
||||
{
|
||||
_currentOutputs[x] /= 12;
|
||||
_currentOutputs[x] /= 5;
|
||||
}
|
||||
|
||||
UpdateOutputLevel();
|
||||
|
|
|
@ -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
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue