diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2021-09-08 21:51:41 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-08 21:51:41 +0100 |
| commit | a70ecdba6eb2203db6fc6ff13db89f61d15e07f3 (patch) | |
| tree | a9aa592b0abdf63237408af57d08f71202f899c9 | |
| parent | 2786c30736a0555d2c49c1d089f87e0e1e6e1c65 (diff) | |
| parent | 187e6d3ab77836d39b6374bada68b5e46a40cecc (diff) | |
Merge pull request #1145 from oskarnp/fix-raylib-configflag
Fix ConfigFlag.INTERLACED_HINT for raylib.odin
| -rw-r--r-- | vendor/raylib/raylib.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/raylib/raylib.odin b/vendor/raylib/raylib.odin index 4035a1d9e..76eb61ebf 100644 --- a/vendor/raylib/raylib.odin +++ b/vendor/raylib/raylib.odin @@ -371,7 +371,7 @@ ConfigFlag :: enum c.int { WINDOW_TRANSPARENT = 4, // Set to allow transparent framebuffer WINDOW_HIGHDPI = 13, // Set to support HighDPI MSAA_4X_HINT = 5, // Set to try enabling MSAA 4X - INTERLACED_HINT = 1, // Set to try enabling interlaced video format (for V3D) + INTERLACED_HINT = 16, // Set to try enabling interlaced video format (for V3D) } ConfigFlags :: distinct bit_set[ConfigFlag; c.int] |