Fix a typecast warning in glfw clipboard access (#4479)
This commit is contained in:
parent
2af4f31712
commit
fb69b39d54
1 changed files with 1 additions and 1 deletions
|
@ -988,7 +988,7 @@ Image GetClipboardImage(void)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
image = LoadImageFromMemory(".bmp", fileData, dataSize);
|
image = LoadImageFromMemory(".bmp", fileData, (int)dataSize);
|
||||||
}
|
}
|
||||||
return image;
|
return image;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue