Revert to last commit, as msvc is stuck in the last millenium

This commit is contained in:
vrld
2011-02-22 11:15:27 +01:00
parent 08259a4a0e
commit a13b792a5c
7 changed files with 8054 additions and 17 deletions
+1 -1
View File
@@ -286,7 +286,7 @@ int main(int argc, char ** argv)
}
// Boot
if (luaL_loadbuffer(L, love::boot_lua.c_str(), love::boot_lua.size(), "boot.lua") == 0)
if (luaL_loadbuffer(L, (const char *)love::boot_lua, sizeof(love::boot_lua), "boot.lua") == 0)
lua_call(L, 0, 0);
lua_close(L);