Skip to content

Commit

Permalink
Set model normalization on by default (#378)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
sdatkinson authored Oct 15, 2023
1 parent d23e2fd commit 46bafe6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NeuralAmpModeler/NeuralAmpModeler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ NeuralAmpModeler::NeuralAmpModeler(const InstanceInfo& info)
GetParam(kNoiseGateThreshold)->InitGain("Gate", -80.0, -100.0, 0.0, 0.1);
GetParam(kNoiseGateActive)->InitBool("NoiseGateActive", true);
GetParam(kEQActive)->InitBool("ToneStack", true);
GetParam(kOutNorm)->InitBool("OutNorm", false);
GetParam(kOutNorm)->InitBool("OutNorm", true);
GetParam(kIRToggle)->InitBool("IRToggle", true);

mNoiseGateTrigger.AddListener(&mNoiseGateGain);
Expand Down

0 comments on commit 46bafe6

Please sign in to comment.