diff options
author | Chris Robinson <[email protected]> | 2009-12-23 13:59:58 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2009-12-23 13:59:58 -0800 |
commit | 6ea7b43c902e67828bf56df5d3be4f70c2619dcf (patch) | |
tree | 4f4d1652b53c69fc01cfaf58043f282e19ec8677 | |
parent | ddfad996a92bc681ede2607315981754107b67eb (diff) |
Don't force latency adjustment with PulseAudio
-rw-r--r-- | Alc/pulseaudio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/pulseaudio.c b/Alc/pulseaudio.c index 5bbdb6b6..5ca00893 100644 --- a/Alc/pulseaudio.c +++ b/Alc/pulseaudio.c @@ -532,7 +532,7 @@ static ALCboolean pulse_reset_playback(ALCdevice *device) //{{{ ppa_stream_set_state_callback(data->stream, stream_state_callback, device); - if(ppa_stream_connect_playback(data->stream, NULL, &data->attr, PA_STREAM_ADJUST_LATENCY, NULL, NULL) < 0) + if(ppa_stream_connect_playback(data->stream, NULL, &data->attr, 0, NULL, NULL) < 0) { AL_PRINT("Stream did not connect: %s\n", ppa_strerror(ppa_context_errno(data->context))); |