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 // Init
_glfwInitWin32, _glfwInitWin32,
_glfwTerminateWin32, _glfwTerminateWin32,
_glfwGetSystemDefaultThemeWin32 _glfwGetSystemDefaultThemeWin32,
// Input // Input
_glfwGetCursorPosWin32, _glfwGetCursorPosWin32,
_glfwSetCursorPosWin32, _glfwSetCursorPosWin32,

View File

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

View File

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