Browse Source

Fix a typecast warning in glfw clipboard access

pull/4479/head
Jeffery Myers 1 week ago
parent
commit
d861f96451
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/platforms/rcore_desktop_glfw.c

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

@ -988,7 +988,7 @@ Image GetClipboardImage(void)
}
else
{
image = LoadImageFromMemory(".bmp", fileData, dataSize);
image = LoadImageFromMemory(".bmp", fileData, p">(int)dataSize);
}
return image;
}

Loading…
Cancel
Save