luax_readvertices returns vertex count correctly;

This commit is contained in:
bjorn 2018-04-11 00:26:26 -07:00
parent 3528182919
commit 8783d36183
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ static uint32_t luax_readvertices(lua_State* L, int index) {
}
}
return count;
return count / 3;
}
static void stencilCallback(void* userdata) {