mirror of
https://github.com/raysan5/raylib.git
synced 2026-01-25 16:49:18 -05:00
REVIEWED: Flags set/clear #5169
This commit is contained in:
@ -271,7 +271,7 @@ static DWORD MakeWindowStyle(unsigned flags)
|
||||
|
||||
// Minimized takes precedence over maximized
|
||||
int mized = MIZED_NONE;
|
||||
if (FLAG_CHECK(flags, FLAG_WINDOW_MINIMIZED)) mized = MIZED_MIN;
|
||||
if (FLAG_IS_SET(flags, FLAG_WINDOW_MINIMIZED)) mized = MIZED_MIN;
|
||||
if (flags & FLAG_WINDOW_MAXIMIZED) mized = MIZED_MAX;
|
||||
|
||||
switch (mized)
|
||||
|
||||
Reference in New Issue
Block a user