1
0
Fork 0
mirror of https://github.com/AquariaOSE/Aquaria.git synced 2025-07-03 06:24:32 +00:00

Build fixes for clang; little CMake config update

This commit is contained in:
fgenesis 2012-02-10 20:28:35 +01:00
parent f738c19757
commit 9b2c18ecaa
4 changed files with 50 additions and 47 deletions

View file

@ -155,7 +155,7 @@ void *ThreadPool::u_createThread()
th = SDL_CreateThread(threadpool_runner, this);
#endif
if (!th)
return false;
return NULL;
u_addThread(th);
return th;
}