From f0c6e5e855d66df09e5df4f89c1324903d1f7d0f Mon Sep 17 00:00:00 2001 From: reaperrr Date: Thu, 11 May 2017 20:09:13 +0200 Subject: [PATCH] Disable DPI scaling on WIndows by default --- OpenRA.Game/Settings.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Game/Settings.cs b/OpenRA.Game/Settings.cs index b46c7ce312..aebeee4707 100644 --- a/OpenRA.Game/Settings.cs +++ b/OpenRA.Game/Settings.cs @@ -119,7 +119,7 @@ namespace OpenRA public int MaxFramerate = 60; [Desc("Disable high resolution DPI scaling on Windows operating systems.")] - public bool DisableWindowsDPIScaling = false; + public bool DisableWindowsDPIScaling = true; public int BatchSize = 8192; public int SheetSize = 2048;