diff --git a/standalone/src/main.cpp b/standalone/src/main.cpp index a241c233..0c9d0416 100644 --- a/standalone/src/main.cpp +++ b/standalone/src/main.cpp @@ -117,7 +117,18 @@ int main( int argc, char** argv ) if( !view ) { - ImGui::Begin( "Connect to...", nullptr, ImGuiWindowFlags_AlwaysAutoResize ); + ImGui::Begin( "Tracy server", nullptr, ImGuiWindowFlags_AlwaysAutoResize ); + if( ImGui::SmallButton( "Homepage" ) ) + { + OpenWebpage( "https://bitbucket.org/wolfpld/tracy" ); + } + ImGui::SameLine(); + if( ImGui::SmallButton( "Tutorial" ) ) + { + OpenWebpage( "https://www.youtube.com/watch?v=fB5B46lbapc" ); + } + ImGui::Separator(); + ImGui::Text( "Connect to client" ); ImGui::InputText( "Address", addr, 1024 ); if( ImGui::Button( "Connect" ) && *addr ) {