mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-24 02:25:28 +00:00
Treat 0 as a special value (necessary for internal purposes).
This commit is contained in:
parent
76ae6999cd
commit
a3b2211547
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue