Browse Source

Fix detecting if pulseaudio is running in audio=runtime mode.

master
Reece H. Dunn 9 years ago
parent
commit
95c171831a
1 changed files with 1 additions and 0 deletions
  1. 1
    0
      src/libespeak-ng/wave.c

+ 1
- 0
src/libespeak-ng/wave.c View File

// wrappers // wrappers
void *wave_open(int srate, const char *device) void *wave_open(int srate, const char *device)
{ {
pulse_running = is_pulse_running();
if (pulse_running) if (pulse_running)
return wave_pulse_open(srate, device); return wave_pulse_open(srate, device);
else else

Loading…
Cancel
Save