2
3
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-14 02:27:40 -04:00

Don't use Windows-specific Sleep function.

This commit is contained in:
Darryl Pogue
2011-08-06 14:41:53 -07:00
parent 28d5ec2e4b
commit e9f54e9547

View File

@ -23,7 +23,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
Mead, WA 99021
*==LICENSE==*/
#include <process.h>
#include "hsTypes.h"
#include "plSoundBuffer.h"
@ -166,7 +166,7 @@ plSoundBuffer::~plSoundBuffer()
{
while(!fLoaded)
{
Sleep(10);
hsSleep::Sleep(10);
}
}