From 757096e7df15c14b9b10352fa91663483f9e34f8 Mon Sep 17 00:00:00 2001 From: xolatile Date: Sun, 10 Aug 2025 00:19:46 +0200 Subject: all --- src/engine/skelmodel.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/engine/skelmodel.h') diff --git a/src/engine/skelmodel.h b/src/engine/skelmodel.h index e823337..ad5d34e 100644 --- a/src/engine/skelmodel.h +++ b/src/engine/skelmodel.h @@ -243,13 +243,13 @@ struct skelmodel : animmodel { return numverts; } template - static inline void fillvert(T &vv, int j, vert &v) { + static inline void fillvert(T &vv, vert &v) { vv.tc = v.tc; } template void fillverts(T *vdata) { vdata += voffset; - loopi(numverts) fillvert(vdata[i], i, verts[i]); + loopi(numverts) fillvert(vdata[i], verts[i]); } void interpverts(const dualquat * RESTRICT bdata1, const dualquat * RESTRICT bdata2, bool tangents, void * RESTRICT vdata, skin &s) { const int blendoffset = ((skelmeshgroup *)group)->skel->numgpubones; -- cgit v1.2.3