Skip to content

Commit d71675d

Browse files
JeffM2501psxdev
authored andcommitted
Fix a typecast warning in glfw clipboard access (raysan5#4479)
1 parent 389a0e6 commit d71675d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/platforms/rcore_desktop_glfw.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -988,7 +988,7 @@ Image GetClipboardImage(void)
988988
}
989989
else
990990
{
991-
image = LoadImageFromMemory(".bmp", fileData, dataSize);
991+
image = LoadImageFromMemory(".bmp", fileData, (int)dataSize);
992992
}
993993
return image;
994994
}

0 commit comments

Comments
 (0)