mirror of
https://github.com/linux-speakup/espeakup.git
synced 2026-08-22 15:44:17 +02:00
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:
parent
c7e3835fbd
commit
9b0c6a8224
1 changed files with 1 additions and 1 deletions
2
synth.c
2
synth.c
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue