Fix a typecast warning in glfw clipboard access (#4479)

This commit is contained in:
Jeffery Myers 2024-11-11 10:46:54 -08:00 committed by GitHub
parent 2af4f31712
commit fb69b39d54
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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