Cleanup: Fix outdated comment

This commit is contained in:
Hans Goudey 2022-08-17 12:05:20 -04:00
parent a73cc81646
commit 9a67aac8d7
1 changed files with 2 additions and 5 deletions

View File

@ -430,8 +430,6 @@ static float metaball(PROCESS *process, float x, float y, float z)
*/
static void make_face(PROCESS *process, int i1, int i2, int i3, int i4)
{
int *cur;
#ifdef USE_ACCUM_NORMAL
float n[3];
#endif
@ -441,10 +439,9 @@ static void make_face(PROCESS *process, int i1, int i2, int i3, int i4)
process->indices = MEM_reallocN(process->indices, sizeof(int[4]) * process->totindex);
}
cur = process->indices[process->curindex++];
/* #DispList supports array drawing, treat tri's as fake quad. */
int *cur = process->indices[process->curindex++];
/* Treat triangles as fake quads. */
cur[0] = i1;
cur[1] = i2;
cur[2] = i3;