mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-24 21:11:39 +00:00
- fixed: P_PointInSectorBuggy must handle the single-subsector special case.
This commit is contained in:
parent
51ab60178a
commit
448e66f19b
1 changed files with 4 additions and 0 deletions
|
@ -1980,6 +1980,10 @@ int P_VanillaPointOnDivlineSide(fixed_t x, fixed_t y, const divline_t* line)
|
||||||
|
|
||||||
sector_t *P_PointInSectorBuggy(fixed_t x, fixed_t y)
|
sector_t *P_PointInSectorBuggy(fixed_t x, fixed_t y)
|
||||||
{
|
{
|
||||||
|
// single subsector is a special case
|
||||||
|
if (numgamenodes == 0)
|
||||||
|
return gamesubsectors->sector;
|
||||||
|
|
||||||
node_t *node = gamenodes + numgamenodes - 1;
|
node_t *node = gamenodes + numgamenodes - 1;
|
||||||
|
|
||||||
do
|
do
|
||||||
|
|
Loading…
Reference in a new issue