1
0
Fork 0

Removed extraneous assert

This commit is contained in:
mrexodia 2016-07-22 18:17:10 +02:00
parent 8a40b0da6a
commit e2b4aa1927
No known key found for this signature in database
GPG Key ID: D72F9A4FAA0073B4
1 changed files with 0 additions and 1 deletions

View File

@ -221,7 +221,6 @@ HANDLE ThreadGetHandle(DWORD ThreadId)
if(threadList.find(ThreadId) != threadList.end())
return threadList[ThreadId].Handle;
ASSERT_ALWAYS("Trying to get handle of a thread that doesn't exist!");
return nullptr;
}