From 4a0b5b791865dc0b8fb2f666b7868684311ef4ff Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Mon, 19 Mar 2012 02:19:13 -0700 Subject: [PATCH] Increase the sound stream thread sleep time to 50ms --- apps/openmw/mwsound/openal_output.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/openmw/mwsound/openal_output.cpp b/apps/openmw/mwsound/openal_output.cpp index 2f993aa010..04ae47c72b 100644 --- a/apps/openmw/mwsound/openal_output.cpp +++ b/apps/openmw/mwsound/openal_output.cpp @@ -113,7 +113,7 @@ struct OpenAL_Output::StreamThread { iter++; } mMutex.unlock(); - boost::this_thread::sleep(boost::posix_time::milliseconds(20)); + boost::this_thread::sleep(boost::posix_time::milliseconds(50)); } }