mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-17 01:11:45 +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 *
|
sep_t *
|
||||||
Findpassages (winding_t *source, winding_t *pass)
|
FindPassages (winding_t *source, winding_t *pass)
|
||||||
{
|
{
|
||||||
double length;
|
double length;
|
||||||
float d;
|
float d;
|
||||||
|
@ -587,7 +587,7 @@ CalcPassages (void)
|
||||||
|
|
||||||
count2++;
|
count2++;
|
||||||
|
|
||||||
sep = Findpassages (p1->winding, p2->winding);
|
sep = FindPassages (p1->winding, p2->winding);
|
||||||
if (!sep) {
|
if (!sep) {
|
||||||
count_sep++;
|
count_sep++;
|
||||||
sep = malloc (sizeof (*sep));
|
sep = malloc (sizeof (*sep));
|
||||||
|
|
Loading…
Reference in a new issue