reduce noise in Renderer

This commit is contained in:
Chris Forbes
2011-07-11 23:31:17 +12:00
committed by Paul Chote
parent ceaca47747
commit b06647a079

View File

@@ -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 )