Fix lovr.headset.getBoundsGeometry;

This commit is contained in:
bjorn 2016-11-23 21:01:46 -08:00
parent fc6fd738d2
commit 43b7592989
1 changed files with 1 additions and 1 deletions

View File

@ -132,7 +132,7 @@ int l_lovrHeadsetGetBoundsGeometry(lua_State* L) {
lua_pushnumber(L, geometry[3 * i + j]);
lua_rawseti(L, -2, j + 1);
}
lua_pop(L, 1);
lua_rawseti(L, -2, i + 1);
}
return 1;
}