mirror of
https://github.com/glfw/glfw.git
synced 2025-04-05 05:25:07 +00:00
Simplify code logic for glfwIsInitialized
.
This commit is contained in:
parent
0fc6fa88b3
commit
06137147a3
1 changed files with 3 additions and 5 deletions
|
@ -437,11 +437,9 @@ GLFWAPI void glfwTerminate(void)
|
|||
terminate();
|
||||
}
|
||||
|
||||
GLFWAPI int glfwIsInitialized(void){
|
||||
if (_glfw.initialized)
|
||||
return GLFW_TRUE;
|
||||
|
||||
return GLFW_FALSE;
|
||||
GLFWAPI int glfwIsInitialized(void)
|
||||
{
|
||||
return _glfw.initialized;
|
||||
}
|
||||
|
||||
GLFWAPI void glfwInitHint(int hint, int value)
|
||||
|
|
Loading…
Add table
Reference in a new issue