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

@@ -79,7 +79,7 @@ namespace OpenRA.Renderer.Glsl
ErrorHandler.CheckGlError();
}
public void Clear( Color c )
public void Clear()
{
Gl.glClearColor( 0, 0, 0, 0 );
ErrorHandler.CheckGlError();