From f28f32de4f541769d7777c39a62092088a433c11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Bourdeauducq?= Date: Sat, 18 Jan 2025 15:38:58 +0800 Subject: [PATCH] window title --- sndlock.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sndlock.cpp b/sndlock.cpp index d8b69f4..188bcd8 100644 --- a/sndlock.cpp +++ b/sndlock.cpp @@ -237,7 +237,7 @@ int main(int argc, char* argv[]) std::atexit(glfwTerminate); glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3); glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 0); - static GLFWwindow* window = glfwCreateWindow(1024, 1200, "sndlock", nullptr, nullptr); + static GLFWwindow *window = glfwCreateWindow(1024, 1200, "Soundlocker", nullptr, nullptr); if(window == nullptr) { std::cerr << "failed to create GLFW window" << std::endl; return 1; @@ -297,7 +297,7 @@ int main(int argc, char* argv[]) ImGui::SetNextWindowPos(ImVec2(0.0f, 0.0f)); ImGui::SetNextWindowSize(io.DisplaySize); ImGui::PushStyleVar(ImGuiStyleVar_WindowRounding, 0.0f); - ImGui::Begin("sndlock", nullptr, ImGuiWindowFlags_NoDecoration | ImGuiWindowFlags_NoResize); + ImGui::Begin("Soundlocker", nullptr, ImGuiWindowFlags_NoDecoration | ImGuiWindowFlags_NoResize); if(ImGui::CollapsingHeader("Modulation")) { for(int i=0;i