mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
Fix another dragpoint() bug that was wrongly omitting walls.
This one could have only happened with TROR maps, I think. git-svn-id: https://svn.eduke32.com/eduke32@2097 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
4322bae14c
commit
3713e3db9b
1 changed files with 19 additions and 5 deletions
|
@ -11477,7 +11477,7 @@ void dragpoint(int16_t pointhighlight, int32_t dax, int32_t day)
|
|||
}
|
||||
}
|
||||
|
||||
if (clockwise==0) //search points CCW
|
||||
if (!clockwise) //search points CCW
|
||||
{
|
||||
if (wall[w].nextwall >= 0)
|
||||
w = wall[wall[w].nextwall].point2;
|
||||
|
@ -11488,7 +11488,15 @@ void dragpoint(int16_t pointhighlight, int32_t dax, int32_t day)
|
|||
}
|
||||
}
|
||||
|
||||
if (clockwise==1)
|
||||
cnt--;
|
||||
if (cnt==0)
|
||||
{
|
||||
initprintf("dragpoint %d: infloop!\n", pointhighlight);
|
||||
i = numyaxwalls;
|
||||
break;
|
||||
}
|
||||
|
||||
if (clockwise)
|
||||
{
|
||||
thelastwall = lastwall(w);
|
||||
if (wall[thelastwall].nextwall >= 0)
|
||||
|
@ -11497,9 +11505,15 @@ void dragpoint(int16_t pointhighlight, int32_t dax, int32_t day)
|
|||
break;
|
||||
}
|
||||
|
||||
cnt--;
|
||||
if ((walbitmap[w>>3] & (1<<(w&7))) || cnt==0)
|
||||
break;
|
||||
if ((walbitmap[w>>3] & (1<<(w&7))))
|
||||
{
|
||||
if (clockwise)
|
||||
break;
|
||||
|
||||
w = tmpstartwall;
|
||||
clockwise = 1;
|
||||
continue;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue