mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-16 01:11:28 +00:00
Fix a "duplicate const" error.
git-svn-id: https://svn.eduke32.com/eduke32@3672 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
670ede9f60
commit
1e7283f982
1 changed files with 1 additions and 1 deletions
|
@ -2287,7 +2287,7 @@ static int32_t md3draw(md3model_t *m, const spritetype *tspr)
|
|||
point3d *vertexhandle = NULL;
|
||||
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];
|
||||
v1 = &s->xyzn[m->nframe*s->numverts];
|
||||
|
|
Loading…
Reference in a new issue