mirror of
https://github.com/raysan5/raylib.git
synced 2025-09-06 03:18:14 +00:00
Fix a typecast warning in glfw clipboard access (#4479)
This commit is contained in:
@@ -988,7 +988,7 @@ Image GetClipboardImage(void)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
image = LoadImageFromMemory(".bmp", fileData, dataSize);
|
image = LoadImageFromMemory(".bmp", fileData, (int)dataSize);
|
||||||
}
|
}
|
||||||
return image;
|
return image;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user