mirror of
https://github.com/glfw/glfw.git
synced 2025-06-07 16:24:57 +00:00
fixes
This commit is contained in:
parent
5591b9043c
commit
b6187626ab
@ -73,6 +73,7 @@ GLFWbool _glfwConnectNull(int platformID, _GLFWplatform* platform)
|
||||
_glfwCreateWindowNull,
|
||||
_glfwDestroyWindowNull,
|
||||
_glfwSetWindowTitleNull,
|
||||
_glfwSetWindowTitlebarColorNull,
|
||||
_glfwSetWindowIconNull,
|
||||
_glfwGetWindowPosNull,
|
||||
_glfwSetWindowPosNull,
|
||||
|
@ -529,7 +529,7 @@ GLFWAPI void glfwSetWindowTitlebarColor(GLFWwindow* handle, int r, int g, int b,
|
||||
assert(window != NULL);
|
||||
assert(window != NULL);
|
||||
_GLFW_REQUIRE_INIT();
|
||||
_glfw.platform.setWindowTitlebarColor(handle, r,g,b,a);
|
||||
_glfw.platform.setWindowTitlebarColor(window, r,g,b,a);
|
||||
}
|
||||
GLFWAPI void glfwSetWindowIcon(GLFWwindow* handle,
|
||||
int count, const GLFWimage* images)
|
||||
|
Loading…
Reference in New Issue
Block a user