Fixed missing NULL in return statement.
This commit is contained in:
Родитель
f3fbbb4311
Коммит
2fc42e9017
|
@ -979,7 +979,7 @@ GLFWAPI void* glfwGetWindowUserPointer(GLFWwindow window)
|
|||
if (!_glfwInitialized)
|
||||
{
|
||||
_glfwSetError(GLFW_NOT_INITIALIZED);
|
||||
return;
|
||||
return NULL;
|
||||
}
|
||||
|
||||
return window->userPointer;
|
||||
|
|
Загрузка…
Ссылка в новой задаче