diff options
| author | Ray <[email protected]> | 2019-02-28 22:25:27 +0100 |
|---|---|---|
| committer | Ray <[email protected]> | 2019-02-28 22:25:27 +0100 |
| commit | 50da9f623e1c2c70530653399a9acf1092e30a1d (patch) | |
| tree | acf774abac5eabd61d16decd67fc3a080e1b3e3c | |
| parent | d679a97e926dce81ed64dc40612b6ac8f78ea264 (diff) | |
| download | raylib-50da9f623e1c2c70530653399a9acf1092e30a1d.tar.gz raylib-50da9f623e1c2c70530653399a9acf1092e30a1d.zip | |
Return value in GetClipboardText()
| -rw-r--r-- | src/core.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -990,6 +990,8 @@ const char *GetClipboardText(void) { #if defined(PLATFORM_DESKTOP) return glfwGetClipboardString(window); +#else + return NULL; #endif } |
