Revert "win: Add a timeout for the startblit function"

This reverts commit 3b357348b0.
This commit is contained in:
David Hrdlička
2020-04-27 15:06:10 +02:00
parent 3b357348b0
commit 93dfb955dd

View File

@@ -847,10 +847,7 @@ LPARAM win_get_string(int id)
void /* plat_ */
startblit(void)
{
DWORD ret = WaitForSingleObject(ghMutex, 1000);
if(ret == WAIT_TIMEOUT)
fatal("The blit mutex has timed out.");
WaitForSingleObject(ghMutex, INFINITE);
}