mirror of
https://github.com/glfw/glfw.git
synced 2026-08-29 03:04:14 +02:00
Fixed typecast warning.
This commit is contained in:
@@ -113,7 +113,7 @@ int _glfwPlatformExtensionSupported(const char* extension)
|
||||
|
||||
GLFWglproc _glfwPlatformGetProcAddress(const char* procname)
|
||||
{
|
||||
return wglGetProcAddress(procname);
|
||||
return (GLFWglproc) wglGetProcAddress(procname);
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user