Updated LÖVE source to revision cff5bc8604bd

This commit is contained in:
Martin Felis
2015-12-09 22:19:41 +01:00
parent 8f5ee4a05e
commit 66685a2ade
248 changed files with 11591 additions and 9219 deletions
@@ -184,7 +184,7 @@ int w_Font_setFallbacks(lua_State *L)
return 0;
}
static const luaL_Reg functions[] =
static const luaL_Reg w_Font_functions[] =
{
{ "getHeight", w_Font_getHeight },
{ "getWidth", w_Font_getWidth },
@@ -203,7 +203,7 @@ static const luaL_Reg functions[] =
extern "C" int luaopen_font(lua_State *L)
{
return luax_register_type(L, GRAPHICS_FONT_ID, functions);
return luax_register_type(L, GRAPHICS_FONT_ID, "Font", w_Font_functions, nullptr);
}
} // opengl