Use the same resolution as other examples.

This commit is contained in:
the_fiddler 2008-05-04 16:28:04 +00:00
parent e64ce559d8
commit a8eafbd367

View file

@ -24,7 +24,7 @@ namespace Examples.Tutorial
[Example("Simple Window", ExampleCategory.Tutorial, 1)]
public class T01_Simple_Window : GameWindow
{
public T01_Simple_Window() : base(640, 480, new GraphicsMode(16))
public T01_Simple_Window() : base(800, 600)
{
Keyboard.KeyDown += new OpenTK.Input.KeyDownEvent(Keyboard_KeyDown);
}