mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 10:41:50 +00:00
Small string changes in the welcome dialog.
This commit is contained in:
parent
81c2515199
commit
9bd13b02e9
@ -91,7 +91,7 @@ int main( int argc, char** argv )
|
|||||||
}
|
}
|
||||||
|
|
||||||
char title[128];
|
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" );
|
std::string winPosFile = tracy::GetSavePath( "window.position" );
|
||||||
int x = 200, y = 200, w = 1650, h = 960, maximize = 0;
|
int x = 200, y = 200, w = 1650, h = 960, maximize = 0;
|
||||||
@ -246,9 +246,9 @@ int main( int argc, char** argv )
|
|||||||
glfwSetWindowTitle( window, title );
|
glfwSetWindowTitle( window, title );
|
||||||
}
|
}
|
||||||
|
|
||||||
ImGui::Begin( "Tracy server", nullptr, ImGuiWindowFlags_AlwaysAutoResize );
|
ImGui::Begin( "Get started", nullptr, ImGuiWindowFlags_AlwaysAutoResize );
|
||||||
char buf[128];
|
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 );
|
tracy::TextCentered( buf );
|
||||||
if( ImGui::Button( ICON_FA_BOOK " User manual" ) )
|
if( ImGui::Button( ICON_FA_BOOK " User manual" ) )
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user