diff --git a/OpenRA.Game/Graphics/Renderer.cs b/OpenRA.Game/Graphics/Renderer.cs index 9718ba7b66..3af5ec6892 100644 --- a/OpenRA.Game/Graphics/Renderer.cs +++ b/OpenRA.Game/Graphics/Renderer.cs @@ -135,9 +135,8 @@ namespace OpenRA.Graphics desktopResolution.Width = customSize.X; desktopResolution.Height = customSize.Y; } - return new Size( - desktopResolution.Width, - desktopResolution.Height); + + return desktopResolution; } static IGraphicsDevice CreateDevice( Assembly rendererDll, int width, int height, WindowMode window, bool vsync )