replaced GLFWbool with int

This commit is contained in:
liavt 2017-07-24 10:53:14 -05:00
parent 332d96ac61
commit 030bec01cc
2 changed files with 2 additions and 2 deletions

View File

@ -1594,7 +1594,7 @@ GLFWAPI int glfwInit(void);
*
* @ingroup init
*/
GLFWAPI GLFWbool glfwIsInit(void);
GLFWAPI int glfwIsInit(void);
/*! @brief Terminates the GLFW library.
*

View File

@ -220,7 +220,7 @@ GLFWAPI int glfwInit(void)
return GLFW_TRUE;
}
GLFWAPI GLFWbool glfwIsInit(void)
GLFWAPI int glfwIsInit(void)
{
return _glfw.initialized;
}