Utility/Enums: Fix WindowStyle_Max

This commit is contained in:
Jérôme Leclercq 2016-11-07 11:17:33 +01:00
parent ffe748b8c3
commit 3cb6981ab7
1 changed files with 1 additions and 1 deletions

View File

@ -442,7 +442,7 @@ namespace Nz
WindowStyle_Threaded = 0x10, ///< Runs the window into a thread, allowing the application to keep updating while resizing/dragging the window.
WindowStyle_Default = WindowStyle_Closable | WindowStyle_Resizable | WindowStyle_Titlebar,
WindowStyle_Max = WindowStyle_Titlebar*2-1
WindowStyle_Max = WindowStyle_Threaded*2-1
};
}