mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-28 06:53:40 +00:00
- replaced linked sector constructor with default initializers
This commit is contained in:
parent
ac05f0a6b2
commit
7e02c5f210
1 changed files with 2 additions and 8 deletions
|
@ -520,14 +520,8 @@ struct FDynamicColormap;
|
||||||
|
|
||||||
struct FLinkedSector
|
struct FLinkedSector
|
||||||
{
|
{
|
||||||
sector_t *Sector;
|
sector_t *Sector = nullptr;
|
||||||
int Type;
|
int Type = 0;
|
||||||
|
|
||||||
FLinkedSector(sector_t *sector = nullptr, int type = 0)
|
|
||||||
: Sector(sector)
|
|
||||||
, Type(type)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue