From 5efc03cdf95dd073c9f8037d8e8c94465557ef80 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sun, 20 Jun 2021 12:50:13 +0200 Subject: [PATCH] Move cycles up in cost combo selector. --- server/TracySourceView.cpp | 2 +- server/TracySourceView.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/server/TracySourceView.cpp b/server/TracySourceView.cpp index 645f1a35..efcfe25f 100644 --- a/server/TracySourceView.cpp +++ b/server/TracySourceView.cpp @@ -71,9 +71,9 @@ static SourceView::RegsX86 s_regMapX86[X86_REG_ENDING]; static constexpr const char* s_CostName[] = { "Sample count", + "Cycles", "Slow branches", "Slow cache", - "Cycles", "Retirements", "Branches taken", "Branch miss", diff --git a/server/TracySourceView.hpp b/server/TracySourceView.hpp index 4753971d..04cb72f0 100644 --- a/server/TracySourceView.hpp +++ b/server/TracySourceView.hpp @@ -38,9 +38,9 @@ public: enum class CostType { SampleCount, + Cycles, SlowBranches, SlowCache, - Cycles, Retirements, BranchesTaken, BranchMiss,