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

@@ -38,7 +38,7 @@ namespace OpenRA.Renderer.Null
public void EnableScissor(int left, int top, int width, int height) { }
public void DisableScissor() { }
public void Clear(Color c) { }
public void Clear() { }
public void Present() { }
public void PumpInput(IInputHandler ih)