summaryrefslogtreecommitdiffhomepage
path: root/src/raylib.h
diff options
context:
space:
mode:
authorubkp <[email protected]>2023-07-28 15:08:41 -0300
committerGitHub <[email protected]>2023-07-28 20:08:41 +0200
commit962030e70ad3dfcce5d4642ad65890fde93ad117 (patch)
tree2df6fc16ff1fd4662c62ada8bdefae80847b090e /src/raylib.h
parent5d28bad0adf2a85a48f6ce4644ce728ec9868208 (diff)
downloadraylib-962030e70ad3dfcce5d4642ad65890fde93ad117.tar.gz
raylib-962030e70ad3dfcce5d4642ad65890fde93ad117.zip
Changes SetWindowMonitor() to no longer force fullscreen (#3209)
* Changes SetWindowMonitor() to no longer force fullscreen * Readds fullscreen support
Diffstat (limited to 'src/raylib.h')
-rw-r--r--src/raylib.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/raylib.h b/src/raylib.h
index 108ab024..b3f17bd5 100644
--- a/src/raylib.h
+++ b/src/raylib.h
@@ -954,7 +954,7 @@ RLAPI void SetWindowIcon(Image image); // Set icon fo
RLAPI void SetWindowIcons(Image *images, int count); // Set icon for window (multiple images, RGBA 32bit, only PLATFORM_DESKTOP)
RLAPI void SetWindowTitle(const char *title); // Set title for window (only PLATFORM_DESKTOP)
RLAPI void SetWindowPosition(int x, int y); // Set window position on screen (only PLATFORM_DESKTOP)
-RLAPI void SetWindowMonitor(int monitor); // Set monitor for the current window (fullscreen mode)
+RLAPI void SetWindowMonitor(int monitor); // Set monitor for the current window
RLAPI void SetWindowMinSize(int width, int height); // Set window minimum dimensions (for FLAG_WINDOW_RESIZABLE)
RLAPI void SetWindowSize(int width, int height); // Set window dimensions
RLAPI void SetWindowOpacity(float opacity); // Set window opacity [0.0f..1.0f] (only PLATFORM_DESKTOP)