Browse Source

Increase sonic activation threshold (#2165)

master
Alexander Epaneshnikov 1 month ago
parent
commit
0584e3f91b
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/libespeak-ng/setlengths.c

+ 1
- 1
src/libespeak-ng/setlengths.c View File

@@ -163,7 +163,7 @@ void SetSpeed(int control)

if (control & 2)
DoSonicSpeed(1 * 1024);
if ((wpm_value >= espeakRATE_MAXIMUM) || ((wpm_value > speed.fast_settings) && (wpm > 350))) {
if ((wpm_value > espeakRATE_MAXIMUM) || ((wpm_value > speed.fast_settings) && (wpm > 350))) {
int wpm2;
wpm2 = wpm;
wpm = espeakRATE_NORMAL;

Loading…
Cancel
Save