diff options
| author | Ray <[email protected]> | 2022-06-11 18:12:39 +0200 |
|---|---|---|
| committer | Ray <[email protected]> | 2022-06-11 18:12:39 +0200 |
| commit | 702f2bccfc337ca41bf13d4bbe848bb8e6267187 (patch) | |
| tree | f96f424c9273f17f5783666c4a5d0ac83b707f92 /src/raylib.h | |
| parent | b549baa6b76c3f27f1aebcd4cd61333ad1deb960 (diff) | |
| download | raylib-702f2bccfc337ca41bf13d4bbe848bb8e6267187.tar.gz raylib-702f2bccfc337ca41bf13d4bbe848bb8e6267187.zip | |
REVIEWED: Issue with MOUSE_PASSTROUGH #2516
Diffstat (limited to 'src/raylib.h')
| -rw-r--r-- | src/raylib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/raylib.h b/src/raylib.h index 951c0da5..1a3d6a3f 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -501,7 +501,7 @@ typedef enum { FLAG_WINDOW_ALWAYS_RUN = 0x00000100, // Set to allow windows running while minimized FLAG_WINDOW_TRANSPARENT = 0x00000010, // Set to allow transparent framebuffer FLAG_WINDOW_HIGHDPI = 0x00002000, // Set to support HighDPI - FLAG_WINDOW_MOUSE_PASSTHROUGH = 0x0002000d, // Set to support mouse passthrough, only supported when FLAG_WINDOW_UNDECORATED + FLAG_WINDOW_MOUSE_PASSTHROUGH = 0x00040000, // Set to support mouse passthrough, only supported when FLAG_WINDOW_UNDECORATED FLAG_MSAA_4X_HINT = 0x00000020, // Set to try enabling MSAA 4X FLAG_INTERLACED_HINT = 0x00010000 // Set to try enabling interlaced video format (for V3D) } ConfigFlags; |
