mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +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);
|
||||
for (i = 0; i < w->numpoints - 1; i++) {
|
||||
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",
|
||||
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)
|
||||
|
|
Loading…
Reference in a new issue