Now adds all available resolutions, not just the default one.

This commit is contained in:
the_fiddler 2008-01-25 14:01:07 +00:00
parent d14c639ea7
commit d2f80532ca

View file

@ -35,7 +35,7 @@ namespace OpenTK.Platform.X11
Debug.Indent(); Debug.Indent();
for (int count = 0; count < array.Length; count++) for (int count = 0; count < array.Length; count++)
{ {
resolutions.Add(new DisplayResolution(array[i].Width, array[i].Height, 24, 0)); resolutions.Add(new DisplayResolution(array[count].Width, array[count].Height, 24, 0));
Debug.Print(resolutions[count].ToString()); Debug.Print(resolutions[count].ToString());
} }
Debug.Unindent(); Debug.Unindent();