1
0
mirror of https://github.com/wolfpld/tracy synced 2025-04-29 12:23:53 +00:00

Fix wrong indent.

This commit is contained in:
Bartosz Taudul 2020-05-02 00:42:05 +02:00
parent e132849fe2
commit 2e75990b6c

View File

@ -2367,9 +2367,16 @@ void SourceView::RenderAsmLine( AsmLine& line, uint32_t ipcnt, uint32_t iptotal,
if( line.regData[0] != 0 )
{
ImGui::SameLine();
ImGui::Spacing();
ImGui::SameLine();
if( !line.params.empty() )
{
ImGui::SameLine();
ImGui::Spacing();
ImGui::SameLine();
}
else
{
ImGui::SameLine( 0, 0 );
}
TextColoredUnformatted( ImVec4( 0.5f, 0.5, 1, 1 ), "{" );
ImGui::SameLine( 0, 0 );
int idx = 0;