From 9bd13b02e9ac4d72b093f0029d6bbb129b7f648d Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Fri, 22 Feb 2019 02:41:13 +0100 Subject: [PATCH] Small string changes in the welcome dialog. --- profiler/src/main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/profiler/src/main.cpp b/profiler/src/main.cpp index 370fcc4c..98ba8b8f 100644 --- a/profiler/src/main.cpp +++ b/profiler/src/main.cpp @@ -91,7 +91,7 @@ int main( int argc, char** argv ) } char title[128]; - sprintf( title, "Tracy server %i.%i.%i", tracy::Version::Major, tracy::Version::Minor, tracy::Version::Patch ); + sprintf( title, "Tracy Profiler %i.%i.%i", tracy::Version::Major, tracy::Version::Minor, tracy::Version::Patch ); std::string winPosFile = tracy::GetSavePath( "window.position" ); int x = 200, y = 200, w = 1650, h = 960, maximize = 0; @@ -246,9 +246,9 @@ int main( int argc, char** argv ) glfwSetWindowTitle( window, title ); } - ImGui::Begin( "Tracy server", nullptr, ImGuiWindowFlags_AlwaysAutoResize ); + ImGui::Begin( "Get started", nullptr, ImGuiWindowFlags_AlwaysAutoResize ); char buf[128]; - sprintf( buf, "Tracy %i.%i.%i", tracy::Version::Major, tracy::Version::Minor, tracy::Version::Patch ); + sprintf( buf, "Tracy Profiler %i.%i.%i", tracy::Version::Major, tracy::Version::Minor, tracy::Version::Patch ); tracy::TextCentered( buf ); if( ImGui::Button( ICON_FA_BOOK " User manual" ) ) {