diff --git a/Source/Examples/Tutorial/T01_Simple_Window.cs b/Source/Examples/Tutorial/T01_Simple_Window.cs
index aa83257d..b9a0db08 100644
--- a/Source/Examples/Tutorial/T01_Simple_Window.cs
+++ b/Source/Examples/Tutorial/T01_Simple_Window.cs
@@ -28,15 +28,12 @@ namespace Examples.Tutorial
#region OnLoad
///
- /// Load resources here.
+ /// Setup OpenGL and load resources here.
///
/// Not used.
public override void OnLoad(EventArgs e)
{
- Trace.WriteLine(String.Format("OpenGL driver information: {0}, {1}, {2}",
- GL.GetString(GL.Enums.StringName.RENDERER),
- GL.GetString(GL.Enums.StringName.VENDOR),
- GL.GetString(GL.Enums.StringName.VERSION)));
+ GL.ClearColor(Color.MidnightBlue);
}
#endregion