Fix a typecast warning in glfw clipboard access

This commit is contained in:
Jeffery Myers 2024-11-10 13:39:22 -08:00
parent 2af4f31712
commit d861f96451

View File

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