mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-25 05:21:02 +00:00
- fixed copy&paste error in LowestFloorAt.
This commit is contained in:
parent
8d53f6176e
commit
fd7e6ae604
1 changed files with 1 additions and 1 deletions
|
@ -928,7 +928,7 @@ fixed_t sector_t::LowestFloorAt(fixed_t x, fixed_t y, sector_t **resultsec)
|
||||||
check = P_PointInSector(x, y);
|
check = P_PointInSector(x, y);
|
||||||
}
|
}
|
||||||
if (resultsec) *resultsec = check;
|
if (resultsec) *resultsec = check;
|
||||||
return check->ceilingplane.ZatPoint(x, y);
|
return check->floorplane.ZatPoint(x, y);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue