Some fixes for the new threading backends

This commit is contained in:
Bart van Strien
2011-06-09 10:56:13 +02:00
parent f9ec21619a
commit 709263b032
9 changed files with 242 additions and 237 deletions
+2 -2
View File
@@ -35,10 +35,10 @@ namespace thread
Thread::ThreadThread::ThreadThread(ThreadData* comm)
: comm(comm)
{
}
void Thread::ThreadThread::main() {
void Thread::ThreadThread::main()
{
lua_State * L = lua_open();
luaL_openlibs(L);
#ifdef LOVE_BUILD_STANDALONE