diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-09-09 03:22:44 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-09-09 03:22:44 +0300 |
commit | 27ccf1fb1fc7bf587cace186c18fbbcf3141b548 (patch) | |
tree | 8080855f080db6e27d2474e22244d6f6d649ae0d /src/utils | |
parent | a53db3f4c7ae5424774f59a9244edee11ea3c096 (diff) | |
download | plus-27ccf1fb1fc7bf587cace186c18fbbcf3141b548.tar.gz plus-27ccf1fb1fc7bf587cace186c18fbbcf3141b548.tar.bz2 plus-27ccf1fb1fc7bf587cace186c18fbbcf3141b548.tar.xz plus-27ccf1fb1fc7bf587cace186c18fbbcf3141b548.zip |
Fix style issues detected by clang tidy.
Diffstat (limited to 'src/utils')
-rw-r--r-- | src/utils/perfstat.cpp | 6 | ||||
-rw-r--r-- | src/utils/perfstat.h | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/utils/perfstat.cpp b/src/utils/perfstat.cpp index 479e97033..2e069c7f9 100644 --- a/src/utils/perfstat.cpp +++ b/src/utils/perfstat.cpp @@ -115,7 +115,7 @@ namespace Perf const int val2 = perf.ticks[counterId]; if (val2 >= val1) return val2 - val1; - return val1 - val1; + return val1 - val2; } int getWorstTime(const size_t counterId) @@ -124,6 +124,6 @@ namespace Perf const int val2 = worstFrameStats.ticks[counterId]; if (val2 >= val1) return val2 - val1; - return val1 - val1; + return val1 - val2; } -} +} // namespace Perf diff --git a/src/utils/perfstat.h b/src/utils/perfstat.h index 95a3333f6..d1928b774 100644 --- a/src/utils/perfstat.h +++ b/src/utils/perfstat.h @@ -46,7 +46,7 @@ namespace Perf int getTime(const size_t frameId, const size_t counterId); int getWorstTime(const size_t counterId); -} +} // namespace Perf extern PerfStats perfStats[PERFSTAT_MAX]; extern size_t perfFrameId; |