diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2024-06-04 15:41:15 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-04 15:41:15 +0100 |
| commit | eacf2918add102a65446c001030e77ae80697b3c (patch) | |
| tree | 8cb4b69cadc58bf8dbface35cf2b3ae0599c8355 | |
| parent | afcccfdec5c4b5f01873ae9540aa93c60b49095a (diff) | |
| parent | 3b632b4d9066d9df2e2f8e28d95567c23d5fd1b7 (diff) | |
Merge pull request #3469 from hodgka/raylib_resizable_doc_patch
Fixed typo in raylib documentation
| -rw-r--r-- | vendor/raylib/raylib.odin | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/raylib/raylib.odin b/vendor/raylib/raylib.odin index b98770271..1d9451b3d 100644 --- a/vendor/raylib/raylib.odin +++ b/vendor/raylib/raylib.odin @@ -951,8 +951,8 @@ foreign lib { SetWindowTitle :: proc(title: cstring) --- // Set title for window (only PLATFORM_DESKTOP and PLATFORM_WEB) SetWindowPosition :: proc(x, y: c.int) --- // Set window position on screen (only PLATFORM_DESKTOP) SetWindowMonitor :: proc(monitor: c.int) --- // Set monitor for the current window - SetWindowMinSize :: proc(width, height: c.int) --- // Set window minimum dimensions (for FLAG_WINDOW_RESIZABLE) - SetWindowMaxSize :: proc(width, height: c.int) --- // Set window maximum dimensions (for FLAG_WINDOW_RESIZABLE) + SetWindowMinSize :: proc(width, height: c.int) --- // Set window minimum dimensions (for WINDOW_RESIZABLE) + SetWindowMaxSize :: proc(width, height: c.int) --- // Set window maximum dimensions (for WINDOW_RESIZABLE) SetWindowSize :: proc(width, height: c.int) --- // Set window dimensions SetWindowOpacity :: proc(opacity: f32) --- // Set window opacity [0.0f..1.0f] (only PLATFORM_DESKTOP) SetWindowFocused :: proc() --- // Set window focused (only PLATFORM_DESKTOP) |