mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-10 23:01:59 +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()
|
||||
{
|
||||
left = top = FLT_MAX;
|
||||
bottom = right = FLT_MIN;
|
||||
bottom = right = -FLT_MAX;
|
||||
}
|
||||
|
||||
bool contains(const BoundingRect & other) const
|
||||
|
|
Loading…
Reference in a new issue