From 46f46e645c4fe100ec3fcbdb64583d43bd0a45a0 Mon Sep 17 00:00:00 2001 From: Karl Zylinski Date: Thu, 11 Jan 2024 11:20:14 +0100 Subject: [PATCH] Added comment on SetConfigFlags in Raylib bindings that it must be called before window creation --- vendor/raylib/raylib.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]