rm LOVR_EXPORT from luaopen_lovr definition;

It's only needed on the declaration.
This commit is contained in:
bjorn 2020-12-25 12:22:10 -07:00
parent 25811f1c01
commit 1fc1af8203
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ static const luaL_Reg lovr[] = {
{ NULL, NULL }
};
LOVR_EXPORT int luaopen_lovr(lua_State* L) {
int luaopen_lovr(lua_State* L) {
lua_newtable(L);
luax_register(L, lovr);
return 1;