changed DeleteObject to ReleaseHandle

This commit is contained in:
Manu Evans
2004-02-01 01:07:33 +00:00
parent 2536d9e100
commit 3f812dc63c
-6
View File
@@ -435,13 +435,7 @@ RageMutexImpl::RageMutexImpl()
RageMutexImpl::~RageMutexImpl()
{
#if defined(_XBOX)
CloseHandle( mutex );
#else
// i think this is wrong
// dosent windows use CloseHandle() to destroy a mutex too??
DeleteObject( mutex );
#endif
}