From c5e3b0cfaba3aed122b812bce282c190f704f301 Mon Sep 17 00:00:00 2001 From: ws909 <37029098+ws909@users.noreply.github.com> Date: Thu, 9 Mar 2023 17:45:30 +0100 Subject: [PATCH] Fix style in win32_window.c --- src/win32_window.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/win32_window.c b/src/win32_window.c index 2db61e15..1b376cd7 100644 --- a/src/win32_window.c +++ b/src/win32_window.c @@ -1531,11 +1531,11 @@ void _glfwSetWindowIconWin32(_GLFWwindow* window, int count, const GLFWimage* im if (count) { const GLFWimage* bigImage = _glfwChooseImage(count, images, - GetSystemMetrics(SM_CXICON), - GetSystemMetrics(SM_CYICON)); + GetSystemMetrics(SM_CXICON), + GetSystemMetrics(SM_CYICON)); const GLFWimage* smallImage = _glfwChooseImage(count, images, - GetSystemMetrics(SM_CXSMICON), - GetSystemMetrics(SM_CYSMICON)); + GetSystemMetrics(SM_CXSMICON), + GetSystemMetrics(SM_CYSMICON)); bigIcon = createIcon(bigImage, 0, 0, GLFW_TRUE); smallIcon = createIcon(smallImage, 0, 0, GLFW_TRUE);