Skip to content

Commit

Permalink
Fix a typecast warning in glfw clipboard access (#4479)
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffM2501 authored Nov 11, 2024
1 parent 2af4f31 commit fb69b39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/platforms/rcore_desktop_glfw.c
Original file line number Diff line number Diff line change
Expand Up @@ -988,7 +988,7 @@ Image GetClipboardImage(void)
}
else
{
image = LoadImageFromMemory(".bmp", fileData, dataSize);
image = LoadImageFromMemory(".bmp", fileData, (int)dataSize);
}
return image;
}
Expand Down

0 comments on commit fb69b39

Please sign in to comment.