diff options
| author | Ray <[email protected]> | 2023-10-04 00:00:14 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-10-04 00:00:14 +0200 |
| commit | 479290da7c57402b6ced9442a9b4aac3b6c9c63d (patch) | |
| tree | 42003ecc18bd2048657b3fea6dd0a9fe04ed58ac /cheatsheet/raylib_core.c | |
| parent | c137160f313d8f7f65f2bdbeea9b23e9283aa00d (diff) | |
| parent | 159124d1a05712bb3b7af877ab9b8696b4c72b73 (diff) | |
| download | raylib.com-479290da7c57402b6ced9442a9b4aac3b6c9c63d.tar.gz raylib.com-479290da7c57402b6ced9442a9b4aac3b6c9c63d.zip | |
Merge pull request #63 from ForNeVeR/docs/get-monitor-name
GetMonitorName: document that it returns name of the specified monitor, not the primary one
Diffstat (limited to 'cheatsheet/raylib_core.c')
| -rw-r--r-- | cheatsheet/raylib_core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cheatsheet/raylib_core.c b/cheatsheet/raylib_core.c index 41464f2..1297387 100644 --- a/cheatsheet/raylib_core.c +++ b/cheatsheet/raylib_core.c @@ -41,7 +41,7 @@ int GetMonitorRefreshRate(int monitor); // Get specified monitor refresh rate Vector2 GetWindowPosition(void); // Get window position XY on monitor Vector2 GetWindowScaleDPI(void); // Get window scale DPI factor - const char *GetMonitorName(int monitor); // Get the human-readable, UTF-8 encoded name of the primary monitor + const char *GetMonitorName(int monitor); // Get the human-readable, UTF-8 encoded name of the specified monitor void SetClipboardText(const char *text); // Set clipboard text content const char *GetClipboardText(void); // Get clipboard text content void EnableEventWaiting(void); // Enable waiting for events on EndDrawing(), no automatic event polling |
