Use simpler constructor for TArray in FBlockThingsIterator

This commit is contained in:
RaveYard 2023-03-19 03:41:27 +01:00 committed by Christoph Oelckers
parent 9514d1b120
commit c041b437e1
1 changed files with 2 additions and 2 deletions

View File

@ -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;