This commit is contained in:
Liz3 (Yann HN) 2024-01-11 03:25:48 +01:00
parent 5591b9043c
commit b6187626ab
2 changed files with 2 additions and 1 deletions

View File

@ -73,6 +73,7 @@ GLFWbool _glfwConnectNull(int platformID, _GLFWplatform* platform)
_glfwCreateWindowNull, _glfwCreateWindowNull,
_glfwDestroyWindowNull, _glfwDestroyWindowNull,
_glfwSetWindowTitleNull, _glfwSetWindowTitleNull,
_glfwSetWindowTitlebarColorNull,
_glfwSetWindowIconNull, _glfwSetWindowIconNull,
_glfwGetWindowPosNull, _glfwGetWindowPosNull,
_glfwSetWindowPosNull, _glfwSetWindowPosNull,

View File

@ -529,7 +529,7 @@ GLFWAPI void glfwSetWindowTitlebarColor(GLFWwindow* handle, int r, int g, int b,
assert(window != NULL); assert(window != NULL);
assert(window != NULL); assert(window != NULL);
_GLFW_REQUIRE_INIT(); _GLFW_REQUIRE_INIT();
_glfw.platform.setWindowTitlebarColor(handle, r,g,b,a); _glfw.platform.setWindowTitlebarColor(window, r,g,b,a);
} }
GLFWAPI void glfwSetWindowIcon(GLFWwindow* handle, GLFWAPI void glfwSetWindowIcon(GLFWwindow* handle,
int count, const GLFWimage* images) int count, const GLFWimage* images)