- replace the lost 320x200 resolution with 960x600

This commit is contained in:
Rachael Alexanderson 2019-03-31 03:38:15 -04:00
commit 3fd449378c
4 changed files with 17 additions and 6 deletions

View file

@ -487,6 +487,17 @@ void FGameConfigFile::DoGlobalSetup ()
}
}
}
if (last < 217)
{
auto var = FindCVar("vid_scalemode", NULL);
UCVarValue newvalue;
newvalue.Int = 2;
if (var != NULL)
{
UCVarValue v = var->GetGenericRep(CVAR_Int);
if (v.Int == 3) var->SetGenericRep(newvalue, CVAR_Int);
}
}
}
}
}