Fix duplicate syntax error in win32_init, wl_init, x11_init

This commit is contained in:
ws909 2023-01-26 10:22:40 +01:00
parent 266f67c6db
commit 17ab6209df
3 changed files with 3 additions and 3 deletions

View File

@ -609,7 +609,7 @@ GLFWbool _glfwConnectWin32(int platformID, _GLFWplatform* platform)
// Init
_glfwInitWin32,
_glfwTerminateWin32,
_glfwGetSystemDefaultThemeWin32
_glfwGetSystemDefaultThemeWin32,
// Input
_glfwGetCursorPosWin32,
_glfwSetCursorPosWin32,

View File

@ -382,7 +382,7 @@ GLFWbool _glfwConnectWayland(int platformID, _GLFWplatform* platform)
// Init
_glfwInitWayland,
_glfwTerminateWayland,
_glfwGetSystemDefaultThemeWayland
_glfwGetSystemDefaultThemeWayland,
// Input
_glfwGetCursorPosWayland,
_glfwSetCursorPosWayland,

View File

@ -1172,7 +1172,7 @@ GLFWbool _glfwConnectX11(int platformID, _GLFWplatform* platform)
// Init
_glfwInitX11,
_glfwTerminateX11,
_glfwGetSystemDefaultThemeX11
_glfwGetSystemDefaultThemeX11,
// Input
_glfwGetCursorPosX11,
_glfwSetCursorPosX11,