Style fixes for Renderer.SdlCommon.
This commit is contained in:
@@ -31,7 +31,7 @@ namespace OpenRA.Renderer.SdlCommon
|
||||
public static void CheckGlError()
|
||||
{
|
||||
var n = Gl.glGetError();
|
||||
if( n != Gl.GL_NO_ERROR )
|
||||
if (n != Gl.GL_NO_ERROR)
|
||||
{
|
||||
var error = "GL Error: {0}\n{1}".F((GlError)n, new StackTrace());
|
||||
WriteGraphicsLog(error);
|
||||
@@ -53,5 +53,4 @@ namespace OpenRA.Renderer.SdlCommon
|
||||
Log.Write("graphics", Gl.glGetString(Gl.GL_EXTENSIONS));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user