mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
Fix the insert cicle wall-points bug reported by Norvak.
git-svn-id: https://svn.eduke32.com/eduke32@2279 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
5f12ab7f53
commit
f96cc343a2
1 changed files with 1 additions and 5 deletions
|
@ -6207,11 +6207,7 @@ end_join_sectors:
|
|||
inpclamp(&day, -editorgridextent, editorgridextent);
|
||||
|
||||
if (bad > 0 && goodtogo)
|
||||
{
|
||||
insertpoint(circlewall,dax,day,NULL);
|
||||
if (wall[circlewall].nextwall >= 0 && wall[circlewall].nextwall < circlewall)
|
||||
circlewall++;
|
||||
}
|
||||
insertpoint(circlewall, dax,day, &circlewall);
|
||||
|
||||
dax = mulscale14(dax-pos.x,zoom);
|
||||
day = mulscale14(day-pos.y,zoom);
|
||||
|
|
Loading…
Reference in a new issue