mirror of
https://github.com/wolfpld/tracy.git
synced 2025-03-20 07:40:02 +08: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 );
|
auto frameData = m_worker.GetCallstackFrame( entry );
|
||||||
if( !frameData )
|
if( !frameData )
|
||||||
{
|
{
|
||||||
|
ImGui::Separator();
|
||||||
|
ImGui::Text( "%i", fidx++ );
|
||||||
|
ImGui::NextColumn();
|
||||||
char buf[32];
|
char buf[32];
|
||||||
sprintf( buf, "%p", (void*)entry );
|
sprintf( buf, "%p", (void*)entry );
|
||||||
ImGui::TextUnformatted( buf );
|
ImGui::TextUnformatted( buf );
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user