Ok, project generation didn't really work out. Reverted.

This commit is contained in:
rude
2009-08-10 21:33:07 +02:00
parent ba1a75e547
commit dd420d68a3
68 changed files with 4136 additions and 4196 deletions
+3 -3
View File
@@ -32,13 +32,13 @@ namespace opengl
return luax_checktype<Glyph>(L, idx, "Glyph", GRAPHICS_GLYPH_T);
}
static const luaL_Reg w_Glyph_functions[] = {
static const luaL_Reg functions[] = {
{ 0, 0 }
};
int w_Glyph_open(lua_State * L)
int luaopen_glyph(lua_State * L)
{
luax_register_type(L, "Glyph", w_Glyph_functions);
luax_register_type(L, "Glyph", functions);
return 0;
}