From cb849ee14c23a507a3379bdfdb0bc6a0c5e4244c Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Fri, 4 Jun 2021 14:36:25 +0200 Subject: [PATCH] Capitalize Tracy name. --- server/TracyBadVersion.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/TracyBadVersion.cpp b/server/TracyBadVersion.cpp index 0c3b196a..87d59ebe 100644 --- a/server/TracyBadVersion.cpp +++ b/server/TracyBadVersion.cpp @@ -36,7 +36,7 @@ void BadVersionImpl( BadVersionState& badVer ) if( ImGui::BeginPopupModal( "Bad file", nullptr, ImGuiWindowFlags_AlwaysAutoResize ) ) { TextCentered( ICON_FA_EXCLAMATION_TRIANGLE ); - ImGui::Text( "The file you are trying to open is not a tracy dump." ); + ImGui::Text( "The file you are trying to open is not a Tracy dump." ); ImGui::Separator(); if( ImGui::Button( "Oops" ) ) { @@ -60,7 +60,7 @@ void BadVersionImpl( BadVersionState& badVer ) if( ImGui::BeginPopupModal( "Unsupported file version", nullptr, ImGuiWindowFlags_AlwaysAutoResize ) ) { TextCentered( ICON_FA_CLOUD_DOWNLOAD_ALT ); - ImGui::Text( "The file you are trying to open is unsupported.\nYou should update to tracy %i.%i.%i or newer and try again.", badVer.version >> 16, ( badVer.version >> 8 ) & 0xFF, badVer.version & 0xFF ); + ImGui::Text( "The file you are trying to open is unsupported.\nYou should update to Tracy %i.%i.%i or newer and try again.", badVer.version >> 16, ( badVer.version >> 8 ) & 0xFF, badVer.version & 0xFF ); ImGui::Separator(); if( ImGui::Button( ICON_FA_DOWNLOAD " Download update" ) ) {