Fix a "duplicate const" error.

git-svn-id: https://svn.eduke32.com/eduke32@3672 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
hendricks266 2013-04-13 03:50:57 +00:00
parent 670ede9f60
commit 1e7283f982

View file

@ -2287,7 +2287,7 @@ static int32_t md3draw(md3model_t *m, const spritetype *tspr)
point3d *vertexhandle = NULL; point3d *vertexhandle = NULL;
uint16_t *indexhandle; uint16_t *indexhandle;
const md3surf_t const *s = &m->head.surfs[surfi]; const md3surf_t *const s = &m->head.surfs[surfi];
v0 = &s->xyzn[m->cframe*s->numverts]; v0 = &s->xyzn[m->cframe*s->numverts];
v1 = &s->xyzn[m->nframe*s->numverts]; v1 = &s->xyzn[m->nframe*s->numverts];