Fixed typecast warning.

This commit is contained in:
Camilla Berglund 2012-06-11 13:47:06 +02:00
parent 9cc0abffc5
commit ed9890f110

View File

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