mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-27 00:04:35 +00:00
Fix display of unresolved call stack frames.
This commit is contained in:
parent
9040953e13
commit
3a562ae6c9
@ -7113,6 +7113,9 @@ void View::DrawCallstackWindow()
|
||||
auto frameData = m_worker.GetCallstackFrame( entry );
|
||||
if( !frameData )
|
||||
{
|
||||
ImGui::Separator();
|
||||
ImGui::Text( "%i", fidx++ );
|
||||
ImGui::NextColumn();
|
||||
char buf[32];
|
||||
sprintf( buf, "%p", (void*)entry );
|
||||
ImGui::TextUnformatted( buf );
|
||||
|
Loading…
Reference in New Issue
Block a user