- replaced linked sector constructor with default initializers

This commit is contained in:
alexey.lysiuk 2021-01-30 15:49:55 +02:00
parent ac05f0a6b2
commit 7e02c5f210

View file

@ -520,14 +520,8 @@ struct FDynamicColormap;
struct FLinkedSector
{
sector_t *Sector;
int Type;
FLinkedSector(sector_t *sector = nullptr, int type = 0)
: Sector(sector)
, Type(type)
{
}
sector_t *Sector = nullptr;
int Type = 0;
};