diff options
| author | Karl Zylinski <karl@zylinski.se> | 2024-01-11 11:20:14 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-11 11:20:14 +0100 |
| commit | 46f46e645c4fe100ec3fcbdb64583d43bd0a45a0 (patch) | |
| tree | 1fde11dbf0e86cf98e65f12f3af1a0cf30bf128c | |
| parent | b13aa5db3799fec477d1b85fcdc950ad4fcd4997 (diff) | |
Added comment on SetConfigFlags in Raylib bindings that it must be called before window creation
| -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 6d0ac4544..cf1ac217f 100644 --- a/vendor/raylib/raylib.odin +++ b/vendor/raylib/raylib.odin @@ -1085,7 +1085,7 @@ foreign lib { // Misc. functions TakeScreenshot :: proc(fileName: cstring) --- // Takes a screenshot of current screen (filename extension defines format) - SetConfigFlags :: proc(flags: ConfigFlags) --- // Setup init configuration flags (view FLAGS) + SetConfigFlags :: proc(flags: ConfigFlags) --- // Setup init configuration flags (view FLAGS). NOTE: This function is expected to be called before window creation OpenURL :: proc(url: cstring) --- // Open URL with default system browser (if available) // NOTE: Following functions implemented in module [utils] |