mirror of
https://github.com/ZDoom/ZDRay.git
synced 2024-11-12 23:54:27 +00:00
- VS2017 needs more QA
This commit is contained in:
parent
5ea89ac1b6
commit
6baa8a47d2
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ void FLevel::CheckSkySectors()
|
||||||
{
|
{
|
||||||
char name[9];
|
char name[9];
|
||||||
|
|
||||||
bSkySectors.resize(Sectors.Size());
|
bSkySectors = std::vector<bool>(Sectors.Size()); // Most retarded way to resize ever, but Microsoft apparently broke std::vector<bool> in the latest update..
|
||||||
|
|
||||||
for (int i = 0; i < (int)Sectors.Size(); ++i)
|
for (int i = 0; i < (int)Sectors.Size(); ++i)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue