mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-24 13:11:33 +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
|
||||
{
|
||||
sector_t *Sector;
|
||||
int Type;
|
||||
|
||||
FLinkedSector(sector_t *sector = nullptr, int type = 0)
|
||||
: Sector(sector)
|
||||
, Type(type)
|
||||
{
|
||||
}
|
||||
sector_t *Sector = nullptr;
|
||||
int Type = 0;
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue