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();