summaryrefslogtreecommitdiff
path: root/src/scripting/luautil.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/scripting/luautil.h')
-rw-r--r--src/scripting/luautil.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/scripting/luautil.h b/src/scripting/luautil.h
index 82bb78cf..ee3f1142 100644
--- a/src/scripting/luautil.h
+++ b/src/scripting/luautil.h
@@ -63,7 +63,7 @@ void push(lua_State *s, MapObject *val);
template <typename T> void pushSTLContainer(lua_State *s, const std::list<T> &container)
{
int len = container.size();
- lua_newtable(s);
+ lua_createtable(s, len, 0);
int table = lua_gettop(s);
typename std::list<T>::const_iterator i;
i = container.begin();
@@ -81,7 +81,7 @@ template <typename T> void pushSTLContainer(lua_State *s, const std::list<T> &co
template <typename T> void pushSTLContainer(lua_State *s, const std::vector<T> &container)
{
int len = container.size();
- lua_createtable(s, 0, len);
+ lua_createtable(s, len, 0);
int table = lua_gettop(s);
for (int key = 0; key < len; key++)
@@ -114,7 +114,7 @@ template <typename Tkey, typename Tval> void pushSTLContainer(lua_State *s, cons
template <typename T> void pushSTLContainer(lua_State *s, const std::set<T> &container)
{
int len = container.size();
- lua_newtable(s);
+ lua_createtable(s, len, 0);
int table = lua_gettop(s);
typename std::set<T>::const_iterator i;
i = container.begin();