mirror of
https://github.com/glfw/glfw.git
synced 2025-10-05 06:06:36 +00:00
replaced GLFWbool with int
This commit is contained in:
parent
332d96ac61
commit
030bec01cc
@ -1594,7 +1594,7 @@ GLFWAPI int glfwInit(void);
|
||||
*
|
||||
* @ingroup init
|
||||
*/
|
||||
GLFWAPI GLFWbool glfwIsInit(void);
|
||||
GLFWAPI int glfwIsInit(void);
|
||||
|
||||
/*! @brief Terminates the GLFW library.
|
||||
*
|
||||
|
@ -220,7 +220,7 @@ GLFWAPI int glfwInit(void)
|
||||
return GLFW_TRUE;
|
||||
}
|
||||
|
||||
GLFWAPI GLFWbool glfwIsInit(void)
|
||||
GLFWAPI int glfwIsInit(void)
|
||||
{
|
||||
return _glfw.initialized;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user