1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-16 07:31:16 +02:00

Default 'End' amplitude set to 0.1, rather then 0.8.

This commit is contained in:
martynshaw99
2011-07-25 00:52:30 +00:00
parent 457c91b177
commit fd30dccbfc

View File

@@ -49,7 +49,7 @@ EffectToneGen::EffectToneGen()
frequency[0] = float(440.0); //Hz frequency[0] = float(440.0); //Hz
frequency[1] = float(1320.0); //Hz frequency[1] = float(1320.0); //Hz
amplitude[0] = float(0.8); amplitude[0] = float(0.8);
amplitude[1] = float(0.8); amplitude[1] = float(0.1);
interpolation = 0; interpolation = 0;
} }