add version to window title
This commit is contained in:
parent
256ca6376a
commit
fdec514b74
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue