summaryrefslogtreecommitdiffhomepage
path: root/draw/anim.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'draw/anim.cpp')
-rw-r--r--draw/anim.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/draw/anim.cpp b/draw/anim.cpp
index 02421ddb..5f52f680 100644
--- a/draw/anim.cpp
+++ b/draw/anim.cpp
@@ -78,7 +78,7 @@ void anim_mesh::draw(tile_shader& shader, const Vector2i& win_size, chunk& c, st
fm_assert(i < size);
GL::MeshView mesh{mesh_};
mesh.setCount((int)(quad_index_count * 1));
- mesh.setIndexRange((int)(x.mesh_idx*quad_index_count), 0, max_index);
+ mesh.setIndexOffset((int)(x.mesh_idx*quad_index_count), 0, max_index);
shader.draw(atlas.texture(), mesh);
i++;
}