Declare _glfwPlatformInitJoysticks() to return bool

This patch declares _glfwPlatformInitJoysticks() to return bool which
matches its prototype in glfw/internal.h.
This commit is contained in:
Ayan George 2020-08-04 20:24:35 -04:00
parent 868546abe4
commit 076ad850bb

View File

@ -33,7 +33,7 @@
////// GLFW platform API //////
//////////////////////////////////////////////////////////////////////////
int _glfwPlatformInitJoysticks(void)
bool _glfwPlatformInitJoysticks(void)
{
return true;
}