Skip to content

Commit

Permalink
Update to Latest Airwin
Browse files Browse the repository at this point in the history
  • Loading branch information
baconpaul committed Dec 21, 2023
1 parent 4cb46da commit e5fd4a0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/autogen_airwin/ZOutputStageProc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ void ZOutputStage::processReplacing(float **inputs, float **outputs, VstInt32 sa
//opamp stuff
double inTrim = A*10.0;
inTrim *= inTrim; inTrim *= inTrim;
double outPad = B*10.0;
double outPad = B;
double iirAmountA = 0.00069/overallscale;
biquadF[0] = biquadE[0] = 15500.0 / getSampleRate();
biquadF[1] = biquadE[1] = 0.935;
Expand Down Expand Up @@ -106,7 +106,7 @@ void ZOutputStage::processDoubleReplacing(double **inputs, double **outputs, Vst
//opamp stuff
double inTrim = A*10.0;
inTrim *= inTrim; inTrim *= inTrim;
double outPad = B*10.0;
double outPad = B;
double iirAmountA = 0.00069/overallscale;
biquadF[0] = biquadE[0] = 15500.0 / getSampleRate();
biquadF[1] = biquadE[1] = 0.935;
Expand Down

0 comments on commit e5fd4a0

Please sign in to comment.