1
0
mirror of https://github.com/glfw/glfw.git synced 2025-04-13 20:32:01 +00:00

Fixed Win32 warning.

This commit is contained in:
Camilla Berglund 2012-06-08 01:53:41 +02:00
parent 9cc0abffc5
commit fb2dbd6a53

View File

@ -113,7 +113,7 @@ int _glfwPlatformExtensionSupported(const char* extension)
GLFWglproc _glfwPlatformGetProcAddress(const char* procname)
{
return wglGetProcAddress(procname);
return (GLFWglproc) wglGetProcAddress(procname);
}