Disabled love.thread. Upped version to 0.6.2.

This commit is contained in:
rude
2010-03-01 21:07:46 +01:00
parent 63089e6f72
commit abe37d188f
5 changed files with 807 additions and 807 deletions
+3 -3
View File
@@ -26,10 +26,10 @@ namespace love
// Version stuff.
const int VERSION_MAJOR = 0;
const int VERSION_MINOR = 6;
const int VERSION_REV = 1;
const int VERSION_REV = 2;
const int VERSION = VERSION_MAJOR*100 + VERSION_MINOR*10 + VERSION_REV;
const int VERSION_COMPATIBILITY[] = { VERSION, 0 };
const char * VERSION_STR = "0.6.1";
const int VERSION_COMPATIBILITY[] = { VERSION, 061, 0 };
const char * VERSION_STR = "0.6.2";
const char * VERSION_CODENAME = "Jiggly Juice";
} // love
+1 -1
View File
@@ -79,7 +79,7 @@ static const luaL_Reg modules[] = {
{ "love.physics", love::physics::box2d::luaopen_love_physics },
{ "love.sound", love::sound::luaopen_love_sound },
{ "love.timer", love::timer::sdl::luaopen_love_timer },
{ "love.thread", love::thread::sdl::luaopen_love_thread },
// { "love.thread", love::thread::sdl::luaopen_love_thread },
{ 0, 0 }
};
-1
View File
@@ -237,7 +237,6 @@ function love.init()
audio = true,
physics = true,
sound = true,
thread = true,
},
console = false, -- Only relevant for windows.
}
+800 -801
View File
File diff suppressed because it is too large Load Diff