- upgraded code base to C++17.
Mainly to allow using 'if constexpr'. Older CI compiler setups like GCC 5 for Linux were removed as a consequence. Windows 32 bit was also removed because there are no plans to do any more 32 bit releases of GZDoom.
This commit is contained in:
parent
a89afe61f2
commit
d6e962c91e
4 changed files with 9 additions and 18 deletions
|
|
@ -1879,7 +1879,7 @@ void FParser::SF_FloorTexture(void)
|
|||
|
||||
t_return.type = svt_string;
|
||||
auto tex = TexMan.GetGameTexture(sector->GetTexture(sector_t::floor));
|
||||
t_return.string = tex? tex->GetName() : "";
|
||||
t_return.string = tex? tex->GetName() : FString();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -1969,7 +1969,7 @@ void FParser::SF_CeilingTexture(void)
|
|||
|
||||
t_return.type = svt_string;
|
||||
auto tex = TexMan.GetGameTexture(sector->GetTexture(sector_t::ceiling));
|
||||
t_return.string = tex? tex->GetName() : "";
|
||||
t_return.string = tex? tex->GetName() : FString();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue