Switched lua_absindex() to lua_gettop() for compatibility with 5.1
This commit is contained in:
parent
02f708cb04
commit
69631d8d56
@ -353,15 +353,15 @@ static int Ltostring(lua_State *L)
|
||||
lua_pushvalue(L, 1);
|
||||
// Stack: [mt, buckets, bucket, inst_udata]
|
||||
lua_rawget(L, -2);
|
||||
int inst_table_index = lua_absindex(L, -1);
|
||||
int inst_table_index = lua_gettop(L);
|
||||
// Stack: [mt, buckets, bucket, inst_table]
|
||||
lua_getglobal(L, "tostring");
|
||||
// Stack: [mt, buckets, bucket, inst_table, tostring]
|
||||
int tostring_index = lua_absindex(L, -1);
|
||||
int tostring_index = lua_gettop(L);
|
||||
lua_getfield(L, -5, "__fields");
|
||||
// Stack: [mt, buckets, bucket, inst_table, tostring, fields]
|
||||
int num_fields = lua_objlen(L, -1);
|
||||
int fields_index = lua_absindex(L, -1);
|
||||
int fields_index = lua_gettop(L);
|
||||
|
||||
int needs_comma = 0;
|
||||
for (int i = 1; i <= num_fields; i++) {
|
||||
|
Loading…
Reference in New Issue
Block a user