Module: wine Branch: master Commit: d1aa222e85938424bf85b95f395df5a13877b644 URL: http://source.winehq.org/git/wine.git/?a=commit;h=d1aa222e85938424bf85b95f39...
Author: Maarten Lankhorst m.b.lankhorst@gmail.com Date: Mon Apr 7 15:44:51 2008 -0700
quartz: Make wait timeout in directsound slightly larger.
---
dlls/quartz/dsoundrender.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/quartz/dsoundrender.c b/dlls/quartz/dsoundrender.c index 0cfd163..e65ae12 100644 --- a/dlls/quartz/dsoundrender.c +++ b/dlls/quartz/dsoundrender.c @@ -188,7 +188,7 @@ static HRESULT DSoundRender_SendSampleData(DSoundRenderImpl* This, const BYTE *d /* Wait for enough of the buffer to empty before filling it */ if(buf_free < This->buf_size/4) { - Sleep(10); + Sleep(50); continue; }