From 3247c85c44953cc72fa0a8a7e81f39285bb56efd Mon Sep 17 00:00:00 2001 From: Sylvain Glaize Date: Thu, 23 May 2024 22:46:18 +0200 Subject: [PATCH] Change title of the window --- src/gui/src/ImGui_SDL_GL_Context.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/src/ImGui_SDL_GL_Context.cpp b/src/gui/src/ImGui_SDL_GL_Context.cpp index fd06134..7f049f4 100644 --- a/src/gui/src/ImGui_SDL_GL_Context.cpp +++ b/src/gui/src/ImGui_SDL_GL_Context.cpp @@ -59,7 +59,7 @@ void ImGui_SDL_GL_Context::init_sdl() void ImGui_SDL_GL_Context::create_window(const SDL_WindowFlags& window_flags) { - window = SDL_CreateWindow("Dear ImGui Emscripten example", SDL_WINDOWPOS_CENTERED, + window = SDL_CreateWindow("Virtual MICRAL N", SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED, 1280, 720, window_flags); gl_context = SDL_GL_CreateContext(window); if (!gl_context)