Move cycles up in cost combo selector.

This commit is contained in:
Bartosz Taudul 2021-06-20 12:50:13 +02:00
parent c445c3805c
commit 5efc03cdf9
No known key found for this signature in database
GPG Key ID: B7FE2008B7575DF3
2 changed files with 2 additions and 2 deletions

View File

@ -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",

View File

@ -38,9 +38,9 @@ public:
enum class CostType
{
SampleCount,
Cycles,
SlowBranches,
SlowCache,
Cycles,
Retirements,
BranchesTaken,
BranchMiss,