Treat 0 as a special value (necessary for internal purposes).

This commit is contained in:
the_fiddler 2009-10-18 15:23:22 +00:00
parent 76ae6999cd
commit a3b2211547
2 changed files with 2 additions and 2 deletions

View file

@ -12,7 +12,7 @@ namespace OpenTK
/// <summary>
/// The window has a resizable border. A window with a resizable border can be resized by the user or programmatically.
/// </summary>
Resizable = 0,
Resizable = 1,
/// <summary>
/// The window has a fixed border. A window with a fixed border can only be resized programmatically.
/// </summary>

View file

@ -20,7 +20,7 @@ namespace OpenTK
/// <summary>
/// The window is in its normal state.
/// </summary>
Normal = 0,
Normal = 1,
/// <summary>
/// The window is minimized to the taskbar (also known as 'iconified').
/// </summary>