1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

ListMemData() doesn't use id parameter.

This commit is contained in:
Bartosz Taudul
2023-04-16 17:30:53 +02:00
parent adb2f9a664
commit dec4713854
3 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -848,7 +848,7 @@ void View::DrawZoneInfoWindow()
ListMemData( v, []( auto v ) {
ImGui::Text( "0x%" PRIx64, v->Ptr() );
}, nullptr, m_allocTimeRelativeToZone ? ev.Start() : -1, m_zoneInfoMemPool );
}, m_allocTimeRelativeToZone ? ev.Start() : -1, m_zoneInfoMemPool );
ImGui::TreePop();
}
}