mirror of
https://github.com/glfw/glfw.git
synced 2025-04-05 21:45:08 +00:00
Fix function return value when uninitialized
(cherry picked from commit d7aeb1eae8
)
This commit is contained in:
parent
438cd224d7
commit
ae44e10b33
1 changed files with 1 additions and 1 deletions
|
@ -694,7 +694,7 @@ GLFWAPI float glfwGetWindowOpacity(GLFWwindow* handle)
|
|||
_GLFWwindow* window = (_GLFWwindow*) handle;
|
||||
assert(window != NULL);
|
||||
|
||||
_GLFW_REQUIRE_INIT_OR_RETURN(1.f);
|
||||
_GLFW_REQUIRE_INIT_OR_RETURN(0.f);
|
||||
return _glfwPlatformGetWindowOpacity(window);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue