mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-18 06:51:47 +00:00
D'OH!!! fixes totally borked vis data :)
This commit is contained in:
parent
6b036d14ed
commit
04a1ff51b1
1 changed files with 2 additions and 2 deletions
|
@ -411,10 +411,10 @@ WritePortalFile_r (node_t *node)
|
||||||
p->nodes[0]->visleafnum, p->nodes[1]->visleafnum);
|
p->nodes[0]->visleafnum, p->nodes[1]->visleafnum);
|
||||||
for (i = 0; i < w->numpoints - 1; i++) {
|
for (i = 0; i < w->numpoints - 1; i++) {
|
||||||
fprintf (pf, "(%g %g %g) ",
|
fprintf (pf, "(%g %g %g) ",
|
||||||
w->points[i][0], w->points[i][0], w->points[i][0]);
|
w->points[i][0], w->points[i][1], w->points[i][2]);
|
||||||
}
|
}
|
||||||
fprintf (pf, "(%g %g %g)\n",
|
fprintf (pf, "(%g %g %g)\n",
|
||||||
w->points[i][0], w->points[i][0], w->points[i][0]);
|
w->points[i][0], w->points[i][1], w->points[i][2]);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (p->nodes[0] == node)
|
if (p->nodes[0] == node)
|
||||||
|
|
Loading…
Reference in a new issue