Fixed noise and volume for VRC7

This commit is contained in:
Perkka2 2021-01-28 22:19:47 +01:00
parent 64efda4e0b
commit 6c5454638f
2 changed files with 2 additions and 2 deletions

View file

@ -266,7 +266,7 @@ int16_t SoundMixer::GetOutputVolume(bool forRightChannel)
GetChannelOutput(AudioChannel::Namco163, forRightChannel) * 20 +
GetChannelOutput(AudioChannel::Sunsoft5B, forRightChannel) * 15 +
GetChannelOutput(AudioChannel::VRC6, forRightChannel) * 75 +
GetChannelOutput(AudioChannel::VRC7, forRightChannel) * 2 +
GetChannelOutput(AudioChannel::VRC7, forRightChannel) * 12 +
GetChannelOutput(AudioChannel::EPSG_L, forRightChannel) * 15 +
GetChannelOutput(AudioChannel::EPSG_R, forRightChannel) * 15
);

View file

@ -19,7 +19,7 @@ private:
double _clock;
static constexpr uint8_t cycleCount = 24;
static constexpr uint8_t cycleCount = 12;
struct InputEntry
{