add version to window title

This commit is contained in:
silverweed 2024-09-04 14:38:28 +02:00
parent 256ca6376a
commit fdec514b74

View file

@ -38,7 +38,7 @@ GLFWwindow *init_glfw(i32 desired_win_width, i32 desired_win_height)
GLFWwindow *window = glfwCreateWindow( GLFWwindow *window = glfwCreateWindow(
desired_win_width, desired_win_height, desired_win_width, desired_win_height,
"RNTuple Viewer", "RNTuple Viewer " V_MAJOR "." V_MINOR,
nullptr, nullptr,
nullptr nullptr
); );