Browse Source

[rcore]: fix string typo

pull/4459/head
evertonse 8 months ago
parent
commit
01a999cebe
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      src/platforms/rcore_desktop_glfw.c
  2. +1
    -1
      src/platforms/rcore_desktop_rgfw.c

+ 1
- 1
src/platforms/rcore_desktop_glfw.c View File

@ -979,7 +979,7 @@ Image GetClipboardImage(void)
int width, height; int width, height;
fileData = (void*)Win32GetClipboardImageData(&width, &height, &dataSize); fileData = (void*)Win32GetClipboardImageData(&width, &height, &dataSize);
#else #else
TRACELOG(LOG_WARNING, "Clipboard image: PLATFORM_GLFW doesn't implement `GetClipboardImage` for this OS");
TRACELOG(LOG_WARNING, "Clipboard image: PLATFORM_DESKTOP_GLFW doesn't implement `GetClipboardImage` for this OS");
#endif #endif
if (fileData == NULL) if (fileData == NULL)

+ 1
- 1
src/platforms/rcore_desktop_rgfw.c View File

@ -686,7 +686,7 @@ Image GetClipboardImage(void)
int width, height; int width, height;
fileData = (void*)Win32GetClipboardImageData(&width, &height, &dataSize); fileData = (void*)Win32GetClipboardImageData(&width, &height, &dataSize);
#else #else
TRACELOG(LOG_WARNING, "Clipboard image: PLATFORM_GLFW doesn't implement `GetClipboardImage` for this OS");
TRACELOG(LOG_WARNING, "Clipboard image: PLATFORM_DESKTOP_RGFW doesn't implement `GetClipboardImage` for this OS");
#endif #endif
if (fileData == NULL) if (fileData == NULL)

Loading…
Cancel
Save