diff options
| author | Danil <[email protected]> | 2023-07-20 11:56:35 +0300 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-07-20 10:56:35 +0200 |
| commit | 055fd752c273f246515375d79fca511eef8ecf1b (patch) | |
| tree | d472636c9471268c1777bb2c7ef6db528324cf5a /src | |
| parent | 7124a14a60a4bf7e4357030395750e03a1b976b2 (diff) | |
| download | raylib-055fd752c273f246515375d79fca511eef8ecf1b.tar.gz raylib-055fd752c273f246515375d79fca511eef8ecf1b.zip | |
Fixed GetMonitorName description (#3184) (#3189)
Diffstat (limited to 'src')
| -rw-r--r-- | src/raylib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/raylib.h b/src/raylib.h index c20a69d2..e99d674e 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -974,7 +974,7 @@ RLAPI int GetMonitorPhysicalHeight(int monitor); // Get specifi RLAPI int GetMonitorRefreshRate(int monitor); // Get specified monitor refresh rate RLAPI Vector2 GetWindowPosition(void); // Get window position XY on monitor RLAPI Vector2 GetWindowScaleDPI(void); // Get window scale DPI factor -RLAPI const char *GetMonitorName(int monitor); // Get the human-readable, UTF-8 encoded name of the primary monitor +RLAPI const char *GetMonitorName(int monitor); // Get the human-readable, UTF-8 encoded name of the specified monitor RLAPI void SetClipboardText(const char *text); // Set clipboard text content RLAPI const char *GetClipboardText(void); // Get clipboard text content RLAPI void EnableEventWaiting(void); // Enable waiting for events on EndDrawing(), no automatic event polling |
