From ea956f4cb22e870e00a711dff804b429324fee08 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Mon, 19 May 2025 23:54:36 +0200 Subject: [PATCH] Bullet points in markdown are '*' or '-'. --- profiler/src/profiler/TracyLlm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiler/src/profiler/TracyLlm.cpp b/profiler/src/profiler/TracyLlm.cpp index 79288503..1f4e32ea 100644 --- a/profiler/src/profiler/TracyLlm.cpp +++ b/profiler/src/profiler/TracyLlm.cpp @@ -783,7 +783,7 @@ void TracyLlm::PrintLine( LineContext& ctx, const std::string& str, int num ) const auto begin = str.c_str(); ptr = begin; while( *ptr == ' ' || *ptr == '\t' ) ptr++; - if( ptr[0] == '*' && ptr[1] == ' ' ) + if( ( ptr[0] == '*' || ptr[0] == '-' ) && ptr[1] == ' ' ) { ImGui::TextUnformatted( std::string( ptr - begin, ' ' ).c_str() ); ImGui::SameLine();