diff --git a/Core/EPSGAudio.h b/Core/EPSGAudio.h index 6955a077..f263de39 100644 --- a/Core/EPSGAudio.h +++ b/Core/EPSGAudio.h @@ -123,7 +123,7 @@ protected: for (uint8_t x = 0; x < 2; x++) { - _currentOutputs[x] /= 12; + _currentOutputs[x] /= 5; } UpdateOutputLevel(); diff --git a/Core/SoundMixer.cpp b/Core/SoundMixer.cpp index 95313274..d59e0054 100644 --- a/Core/SoundMixer.cpp +++ b/Core/SoundMixer.cpp @@ -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 ); }