no message
This commit is contained in:
parent
d67c9c4006
commit
8229118af8
1 changed files with 2 additions and 3 deletions
|
@ -309,10 +309,9 @@ void DecalClipLeaf(decal_t *dec, mleaf_t *leaf)
|
||||||
float *v;
|
float *v;
|
||||||
|
|
||||||
poly = (*surf)->polys;
|
poly = (*surf)->polys;
|
||||||
|
for (i=0 ; i<poly->numverts ; i++)
|
||||||
v = (float *)(&globalVertexTable[poly->firstvertex]);
|
|
||||||
for (i=0 ; i<poly->numverts ; i++, v+= VERTEXSIZE)
|
|
||||||
{
|
{
|
||||||
|
v = (float *)(&globalVertexTable[poly->firstvertex+i]);
|
||||||
newVertex[i][0] = v[0];
|
newVertex[i][0] = v[0];
|
||||||
newVertex[i][1] = v[1];
|
newVertex[i][1] = v[1];
|
||||||
newVertex[i][2] = v[2];
|
newVertex[i][2] = v[2];
|
||||||
|
|
Loading…
Reference in a new issue