Skip to content

Commit c8af3aa

Browse files
committed
remove unused param in vertmodel fillvert
1 parent 375dad2 commit c8af3aa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/engine/model/vertmodel.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ class vertmodel : public animmodel
107107
int genvbo(std::vector<uint> &idxs, int offset);
108108

109109
template<class T>
110-
static void fillvert(T &vv, tcvert &tc, vert &v)
110+
static void fillvert(T &vv, tcvert &tc)
111111
{
112112
vv.tc = tc.tc;
113113
}
@@ -118,7 +118,7 @@ class vertmodel : public animmodel
118118
vdata += voffset;
119119
for(int i = 0; i < numverts; ++i)
120120
{
121-
fillvert(vdata[i], tcverts[i], verts[i]);
121+
fillvert(vdata[i], tcverts[i]);
122122
}
123123
}
124124

0 commit comments

Comments
 (0)