Skip to content

Commit

Permalink
Merge pull request #126 from VFansss/developer
Browse files Browse the repository at this point in the history
Autoselect 8K internal rendering if an high res monitor is used
  • Loading branch information
VFansss committed Aug 19, 2020
2 parents 731ef72 + 6bdfc13 commit 76ebddf
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion mgs2 v's fix/Ocelot.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1414,7 +1414,16 @@ public static void startAutoconfig()
// Graphics

//defaultConfig.Graphics["RenderingSize"]="high";
defaultConfig.Graphics["InternalResolution"] = "2K";

if (Double.Parse(defaultConfig.Resolution["Height"]) >= 1440d)
{
defaultConfig.Graphics["InternalResolution"] = "8K";
}
else
{
defaultConfig.Graphics["InternalResolution"] = "2K";
}

defaultConfig.Graphics["ShadowDetail"] = "high";
defaultConfig.Graphics["ModelQuality"] = "medium";
defaultConfig.Graphics["RenderingClearness"] = "high";
Expand Down

0 comments on commit 76ebddf

Please sign in to comment.