From 07d921b322c812a6bfd7680d748bd6cffe522094 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sun, 14 Aug 2022 11:29:36 +0200 Subject: [PATCH] Cosmetics. --- profiler/src/BackendGlfw.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/profiler/src/BackendGlfw.cpp b/profiler/src/BackendGlfw.cpp index 36fbae30..0ad07cae 100644 --- a/profiler/src/BackendGlfw.cpp +++ b/profiler/src/BackendGlfw.cpp @@ -24,7 +24,7 @@ static void glfw_error_callback( int error, const char* description ) static void glfw_window_pos_callback( GLFWwindow* window, int x, int y ) { - if( !glfwGetWindowAttrib( window, GLFW_MAXIMIZED) ) + if( !glfwGetWindowAttrib( window, GLFW_MAXIMIZED ) ) { s_winPos->x = x; s_winPos->y = y; @@ -33,7 +33,7 @@ static void glfw_window_pos_callback( GLFWwindow* window, int x, int y ) static void glfw_window_size_callback( GLFWwindow* window, int w, int h ) { - if( !glfwGetWindowAttrib( window, GLFW_MAXIMIZED) ) + if( !glfwGetWindowAttrib( window, GLFW_MAXIMIZED ) ) { s_winPos->w = w; s_winPos->h = h;