multiple instances sema fix

This commit is contained in:
Fire-Head 2020-12-28 23:08:47 +03:00
parent 9c2f1b0833
commit 8af298c668
1 changed files with 4 additions and 0 deletions

View File

@ -73,7 +73,11 @@ CdStreamInitThread(void)
gChannelRequestQ.size = gNumChannels + 1;
ASSERT(gChannelRequestQ.items != nil );
#ifdef FIX_BUGS
gCdStreamSema = CreateSemaphore(nil, 0, 5, nil);
#else
gCdStreamSema = CreateSemaphore(nil, 0, 5, "CdStream");
#endif
if ( gCdStreamSema == nil )
{