Browse Source

Remove paused from synthesize.c as it is now no longer used.

master
Reece H. Dunn 9 years ago
parent
commit
8df810f776
1 changed files with 1 additions and 3 deletions
  1. 1
    3
      src/libespeak-ng/synthesize.c

+ 1
- 3
src/libespeak-ng/synthesize.c View File

} }


static int timer_on = 0; static int timer_on = 0;
static int paused = 0;


int SynthOnTimer() int SynthOnTimer()
{ {


int SynthStatus() int SynthStatus()
{ {
return timer_on | paused;
return timer_on;
} }


int SpeakNextClause(FILE *f_in, const void *text_in, int control) int SpeakNextClause(FILE *f_in, const void *text_in, int control)
f_text = f_in; f_text = f_in;
p_text = text_in; p_text = text_in;
timer_on = 1; timer_on = 1;
paused = 0;
} }


if ((f_text == NULL) && (p_text == NULL)) { if ((f_text == NULL) && (p_text == NULL)) {

Loading…
Cancel
Save