From 02e72bda39b4c26bcc1a67d701a405427e3a6f8a Mon Sep 17 00:00:00 2001 From: William Hubbs Date: Sat, 30 Aug 2008 16:54:10 -0500 Subject: [PATCH] adjusted the rate multiplier This gets us closer to espeak's top speed, which is 390 wpm. --- synth.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/synth.c b/synth.c index b43cd07..16a0e0e 100644 --- a/synth.c +++ b/synth.c @@ -22,7 +22,7 @@ /* multipliers and offsets */ const int frequencyMultiplier = 11; const int pitchMultiplier = 11; -const int rateMultiplier = 32; +const int rateMultiplier = 34; const int rateOffset = 80; const int volumeMultiplier = 11;