Browse Source

Increase sonic activation threshold

The threshold value for the activation of Sonic was changed in 065a0e8f03 without an obvious reason.

Related issues: #131, #1461.
master
Danstiv 1 month ago
parent
commit
f34129c4aa
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