diff options
Diffstat (limited to 'UI.cpp')
-rw-r--r-- | UI.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -175,10 +175,10 @@ void UI::draw() std::cout << " CPU:"; for (auto& i: cpuloads) { - std::cout << fmt::format(" {:2}%", i); + std::cout << fmt::format(" {:3}%", i); } int max = *std::max_element(cpuloads.begin(), cpuloads.end()); - std::cout << fmt::format(", max. {:2}%", max) << std::endl; + std::cout << fmt::format(", max. {:3}%", max); std::cout << fmt::format(" Temperature: {:3} C", temperature) << std::endl; std::cout << fmt::format(" Main loops/s: {:3}", main_loops_per_second) << std::endl; |