Make SdlThread constructor explicit

This commit is contained in:
Vladimir Olteanu 2021-08-13 01:20:50 +03:00 committed by Anders Jenbo
commit 3638a20c76
3 changed files with 3 additions and 3 deletions

View file

@ -86,7 +86,7 @@ void dthread_start()
DthreadRunning = true;
DthreadMutex.emplace();
WorkToDo.emplace();
Thread = { DthreadHandler };
Thread = SdlThread { DthreadHandler };
}
void DThreadCleanup()