fixed the volume multiplier

The volume range is actually 0-200 instead of 0-100, so the multiplier
needed to be adjusted.
This commit is contained in:
William Hubbs 2008-09-27 12:23:11 -05:00
commit 9b0c6a8224

View file

@ -26,7 +26,7 @@ const int frequencyMultiplier = 11;
const int pitchMultiplier = 11;
const int rateMultiplier = 34;
const int rateOffset = 84;
const int volumeMultiplier = 11;
const int volumeMultiplier = 22;
int SynthCallback(short *wav, int numsamples, espeak_EVENT * events)
{