1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00
This commit is contained in:
Bartosz Taudul
2022-09-04 14:56:12 +02:00
parent 44efb15df1
commit 53632ccb5b
5 changed files with 1 additions and 16 deletions
+1 -1
View File
@@ -109,7 +109,7 @@ void View::DrawOptions()
{
char buf[64];
auto& item = (TimelineItemGpu&)( m_tc.GetItem( gpuData[i] ) );
sprintf( buf, "%s context %zu", GpuContextNames[(int)gpuData[i]->type], item.GetIdx() );
sprintf( buf, "%s context %i", GpuContextNames[(int)gpuData[i]->type], item.GetIdx() );
ImGui::PushFont( m_smallFont );
ImGui::TextUnformatted( buf );
ImGui::PopFont();