mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-26 22:31:05 +00:00
correct the spelling of FindPassages
This commit is contained in:
parent
fca84341de
commit
90b4f5c0ee
1 changed files with 2 additions and 2 deletions
|
@ -452,7 +452,7 @@ PlaneCompare (plane_t *p1, plane_t *p2)
|
|||
}
|
||||
|
||||
sep_t *
|
||||
Findpassages (winding_t *source, winding_t *pass)
|
||||
FindPassages (winding_t *source, winding_t *pass)
|
||||
{
|
||||
double length;
|
||||
float d;
|
||||
|
@ -587,7 +587,7 @@ CalcPassages (void)
|
|||
|
||||
count2++;
|
||||
|
||||
sep = Findpassages (p1->winding, p2->winding);
|
||||
sep = FindPassages (p1->winding, p2->winding);
|
||||
if (!sep) {
|
||||
count_sep++;
|
||||
sep = malloc (sizeof (*sep));
|
||||
|
|
Loading…
Reference in a new issue