From b3cbcb93b25edbec5ffdf32a5db2c4e92f27ce5e Mon Sep 17 00:00:00 2001 From: Oskar Wallgren Date: Wed, 13 Mar 2019 21:35:26 +0100 Subject: [PATCH] Nescaline and Freeboy - Better default sound --- plugins/nes/Nes.cpp | 2 +- plugins/papu/papu_instrument.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/nes/Nes.cpp b/plugins/nes/Nes.cpp index 1b385e46578..aaf45143ee4 100644 --- a/plugins/nes/Nes.cpp +++ b/plugins/nes/Nes.cpp @@ -519,7 +519,7 @@ NesInstrument::NesInstrument( InstrumentTrack * instrumentTrack ) : m_ch3Volume( 15.f, 0.f, 15.f, 1.f, this, tr( "Channel 3 Volume" ) ), //channel 4 - m_ch4Enabled( true, this ), + m_ch4Enabled( false, this ), m_ch4Volume( 15.f, 0.f, 15.f, 1.f, this, tr( "Channel 4 Volume" ) ), m_ch4EnvEnabled( false, this ), diff --git a/plugins/papu/papu_instrument.cpp b/plugins/papu/papu_instrument.cpp index b9c1b28ae2e..328ddffa2a4 100644 --- a/plugins/papu/papu_instrument.cpp +++ b/plugins/papu/papu_instrument.cpp @@ -104,11 +104,11 @@ papuInstrument::papuInstrument( InstrumentTrack * _instrument_track ) : m_ch1So1Model( true, this, tr( "Channel 1 to SO2 (Left)" ) ), m_ch2So1Model( true, this, tr( "Channel 2 to SO2 (Left)" ) ), m_ch3So1Model( true, this, tr( "Channel 3 to SO2 (Left)" ) ), - m_ch4So1Model( true, this, tr( "Channel 4 to SO2 (Left)" ) ), + m_ch4So1Model( false, this, tr( "Channel 4 to SO2 (Left)" ) ), m_ch1So2Model( true, this, tr( "Channel 1 to SO1 (Right)" ) ), m_ch2So2Model( true, this, tr( "Channel 2 to SO1 (Right)" ) ), m_ch3So2Model( true, this, tr( "Channel 3 to SO1 (Right)" ) ), - m_ch4So2Model( true, this, tr( "Channel 4 to SO1 (Right)" ) ), + m_ch4So2Model( false, this, tr( "Channel 4 to SO1 (Right)" ) ), m_trebleModel( -20.0f, -100.0f, 200.0f, 1.0f, this, tr( "Treble" ) ), m_bassModel( 461.0f, -1.0f, 600.0f, 1.0f, this, tr( "Bass" ) ),