mirror of
https://github.com/ZDoom/Raze.git
synced 2025-01-31 12:30:40 +00:00
- fixed bad assert.
This can indeed be called with both angles being identical and should accept this case.
This commit is contained in:
parent
d1f088a858
commit
4700299fc6
1 changed files with 1 additions and 1 deletions
|
@ -118,7 +118,7 @@ bool BunchDrawer::StartBunch(int sectnum, int linenum, binangle startan, binangl
|
||||||
bunch->startangle = startan;
|
bunch->startangle = startan;
|
||||||
bunch->endangle = endan;
|
bunch->endangle = endan;
|
||||||
bunch->portal = portal;
|
bunch->portal = portal;
|
||||||
assert(bunch->endangle.asbam() > bunch->startangle.asbam());
|
assert(bunch->endangle.asbam() >= bunch->startangle.asbam());
|
||||||
return bunch->endangle != angrange;
|
return bunch->endangle != angrange;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue