diff options
| author | Ray <[email protected]> | 2019-01-11 12:21:02 +0100 |
|---|---|---|
| committer | Ray <[email protected]> | 2019-01-11 12:21:02 +0100 |
| commit | 25205b5113587af71af0f39549c9bb0a3c1faf49 (patch) | |
| tree | 2b001d85f04708dd5179ebd7bfcca6eda728869a /src/raylib.h | |
| parent | 7132ba44db85aaa4787509cb94cb859fd3009c81 (diff) | |
| download | raylib-25205b5113587af71af0f39549c9bb0a3c1faf49.tar.gz raylib-25205b5113587af71af0f39549c9bb0a3c1faf49.zip | |
Reverted flag value (but kept order)
This specific change could be very annoying for people already using FLAG_MSAA_4X_HINT, their programs will compile correctly but window won't be shown...
Diffstat (limited to 'src/raylib.h')
| -rw-r--r-- | src/raylib.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/raylib.h b/src/raylib.h index c089b4c0..1ddfaeaa 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -415,9 +415,9 @@ typedef enum { FLAG_WINDOW_RESIZABLE = 4, // Set to allow resizable window FLAG_WINDOW_UNDECORATED = 8, // Set to disable window decoration (frame and buttons) FLAG_WINDOW_TRANSPARENT = 16, // Set to allow transparent window - FLAG_WINDOW_HIDDEN = 32, // Set to create the window initially hidden - FLAG_MSAA_4X_HINT = 64, // Set to try enabling MSAA 4X - FLAG_VSYNC_HINT = 128 // Set to try enabling V-Sync on GPU + FLAG_WINDOW_HIDDEN = 128, // Set to create the window initially hidden + FLAG_MSAA_4X_HINT = 32, // Set to try enabling MSAA 4X + FLAG_VSYNC_HINT = 64 // Set to try enabling V-Sync on GPU } ConfigFlag; // Trace log type |
