add missing namespace

which did not cause compiler errors for some reason
develop
myk002 2022-07-14 14:08:33 -07:00
parent e926e1116e
commit 193b9a4004
No known key found for this signature in database
GPG Key ID: 8A39CA0FA0C16E78
1 changed files with 1 additions and 1 deletions

@ -148,7 +148,7 @@ void Lua::Push(lua_State *state, df::coord2d pos)
lua_setfield(state, -2, "y");
}
void GetVector(lua_State *state, std::vector<std::string> &pvec)
void Lua::GetVector(lua_State *state, std::vector<std::string> &pvec)
{
lua_pushnil(state); // first key
while (lua_next(state, 1) != 0)