Skip to content

Commit 46bafe6

Browse files
authored
Set model normalization on by default (#378)
* Update NeuralAmpModelerCore, NeuralAmpModeler.cpp, NeuralAmpModeler.h Up to date with the latest changes on the core, including simplifying the process call and briging normalization into the plugin. * Formatting * Set model normalization on by default
1 parent d23e2fd commit 46bafe6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

NeuralAmpModeler/NeuralAmpModeler.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ NeuralAmpModeler::NeuralAmpModeler(const InstanceInfo& info)
6565
GetParam(kNoiseGateThreshold)->InitGain("Gate", -80.0, -100.0, 0.0, 0.1);
6666
GetParam(kNoiseGateActive)->InitBool("NoiseGateActive", true);
6767
GetParam(kEQActive)->InitBool("ToneStack", true);
68-
GetParam(kOutNorm)->InitBool("OutNorm", false);
68+
GetParam(kOutNorm)->InitBool("OutNorm", true);
6969
GetParam(kIRToggle)->InitBool("IRToggle", true);
7070

7171
mNoiseGateTrigger.AddListener(&mNoiseGateGain);

0 commit comments

Comments
 (0)