mirror of
https://github.com/ZDoom/gzdoom.git
synced 2025-02-17 01:31:25 +00:00
Use simpler constructor for TArray in FBlockThingsIterator
This commit is contained in:
parent
9514d1b120
commit
c041b437e1
1 changed files with 2 additions and 2 deletions
|
@ -889,7 +889,7 @@ void FMultiBlockLinesIterator::Reset()
|
|||
//===========================================================================
|
||||
|
||||
FBlockThingsIterator::FBlockThingsIterator(FLevelLocals *l)
|
||||
: DynHash(0)
|
||||
: DynHash()
|
||||
{
|
||||
Level = l;
|
||||
minx = maxx = 0;
|
||||
|
@ -899,7 +899,7 @@ FBlockThingsIterator::FBlockThingsIterator(FLevelLocals *l)
|
|||
}
|
||||
|
||||
FBlockThingsIterator::FBlockThingsIterator(FLevelLocals *l, int _minx, int _miny, int _maxx, int _maxy)
|
||||
: DynHash(0)
|
||||
: DynHash()
|
||||
{
|
||||
Level = l;
|
||||
minx = _minx;
|
||||
|
|
Loading…
Reference in a new issue