mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 15:21:51 +00:00
- fixed bad default initialization of BoundingRect's coordinates.
This commit is contained in:
parent
5a2d6de296
commit
c25e7897a7
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ struct BoundingRect
|
||||||
void setEmpty()
|
void setEmpty()
|
||||||
{
|
{
|
||||||
left = top = FLT_MAX;
|
left = top = FLT_MAX;
|
||||||
bottom = right = FLT_MIN;
|
bottom = right = -FLT_MAX;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool contains(const BoundingRect & other) const
|
bool contains(const BoundingRect & other) const
|
||||||
|
|
Loading…
Reference in a new issue