Fixed typo of love.getVersion function in luaopen_love

This commit is contained in:
rxi
2014-06-14 18:49:55 +01:00
parent b71a436826
commit 311aac14b0

View File

@@ -42,7 +42,7 @@ int luaopen_love(lua_State *L) {
/* Init love module */
luaL_Reg reg[] = {
{ "getVerson", l_love_getVersion },
{ "getVersion", l_love_getVersion },
{ 0, 0 },
};
luaL_newlib(L, reg);