This website works better with JavaScript.
Home
Explore
Help
Sign In
Archivist
/
raylib-src
mirror of
https://github.com/raysan5/raylib
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
23
Wiki
Activity
Browse Source
Fix a typecast warning in glfw clipboard access
pull/4479/head
Jeffery Myers
1 week ago
parent
2af4f31712
commit
d861f96451
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/platforms/rcore_desktop_glfw.c
+ 1
- 1
src/platforms/rcore_desktop_glfw.c
View File
@ -988,7 +988,7 @@ Image GetClipboardImage(void)
}
else
{
image
=
LoadImageFromMemory
(
"
.bmp
"
,
fileData
,
dataSize
)
;
image
=
LoadImageFromMemory
(
"
.bmp
"
,
fileData
,
p">(
int
)
dataSize
)
;
}
return
image
;
}
Write
Preview
Loading…
Cancel
Save