Examples: Using fully qualified "Dear ImGui" name in window titles.

This commit is contained in:
omar
2018-07-23 17:31:13 +02:00
parent 528b50a89f
commit ff83d0e369
13 changed files with 15 additions and 15 deletions

View File

@ -23,7 +23,7 @@ int main(int, char**)
glfwSetErrorCallback(glfw_error_callback);
if (!glfwInit())
return 1;
GLFWwindow* window = glfwCreateWindow(1280, 720, "ImGui GLFW+OpenGL2 example", NULL, NULL);
GLFWwindow* window = glfwCreateWindow(1280, 720, "Dear ImGui GLFW+OpenGL2 example", NULL, NULL);
if (window == NULL)
return 1;
glfwMakeContextCurrent(window);