drop unused parameter on IGraphicsDevice.Clear()

This commit is contained in:
Chris Forbes
2011-07-28 23:12:03 +12:00
parent 2bf7cb1496
commit a79cc0a0e0
5 changed files with 5 additions and 5 deletions

View File

@@ -75,7 +75,7 @@ namespace OpenRA.Graphics
public void BeginFrame(float2 scroll, float zoom)
{
device.Clear(Color.Black);
device.Clear();
WorldLineRenderer.LineWidth = zoom;
float2 r1 = new float2(2f/Resolution.Width, -2f/Resolution.Height);