mirror of
https://github.com/glfw/glfw.git
synced 2025-04-13 08:43:01 +00:00
Fixed Win32 warning.
This commit is contained in:
parent
9cc0abffc5
commit
fb2dbd6a53
1 changed files with 1 additions and 1 deletions
|
@ -113,7 +113,7 @@ int _glfwPlatformExtensionSupported(const char* extension)
|
|||
|
||||
GLFWglproc _glfwPlatformGetProcAddress(const char* procname)
|
||||
{
|
||||
return wglGetProcAddress(procname);
|
||||
return (GLFWglproc) wglGetProcAddress(procname);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue