mirror of
https://github.com/wolfpld/tracy.git
synced 2025-03-20 07:40:02 +08:00
Capitalize Tracy name.
This commit is contained in:
parent
3c076ddb6f
commit
cb849ee14c
@ -36,7 +36,7 @@ void BadVersionImpl( BadVersionState& badVer )
|
|||||||
if( ImGui::BeginPopupModal( "Bad file", nullptr, ImGuiWindowFlags_AlwaysAutoResize ) )
|
if( ImGui::BeginPopupModal( "Bad file", nullptr, ImGuiWindowFlags_AlwaysAutoResize ) )
|
||||||
{
|
{
|
||||||
TextCentered( ICON_FA_EXCLAMATION_TRIANGLE );
|
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();
|
ImGui::Separator();
|
||||||
if( ImGui::Button( "Oops" ) )
|
if( ImGui::Button( "Oops" ) )
|
||||||
{
|
{
|
||||||
@ -60,7 +60,7 @@ void BadVersionImpl( BadVersionState& badVer )
|
|||||||
if( ImGui::BeginPopupModal( "Unsupported file version", nullptr, ImGuiWindowFlags_AlwaysAutoResize ) )
|
if( ImGui::BeginPopupModal( "Unsupported file version", nullptr, ImGuiWindowFlags_AlwaysAutoResize ) )
|
||||||
{
|
{
|
||||||
TextCentered( ICON_FA_CLOUD_DOWNLOAD_ALT );
|
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();
|
ImGui::Separator();
|
||||||
if( ImGui::Button( ICON_FA_DOWNLOAD " Download update" ) )
|
if( ImGui::Button( ICON_FA_DOWNLOAD " Download update" ) )
|
||||||
{
|
{
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user