Fix display of unresolved call stack frames.

This commit is contained in:
Bartosz Taudul 2019-02-19 16:37:34 +01:00
parent 9040953e13
commit 3a562ae6c9

View File

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