From 73bfc1878a484f2d1718d9a87c9fcf63265ba08f Mon Sep 17 00:00:00 2001 From: Martin Whitaker Date: Sat, 29 Jan 2022 13:45:42 +0000 Subject: [PATCH] Blank the full field when displaying the active CPU core. --- app/display.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/display.h b/app/display.h index 5ff9ad1..ca9d5fe 100644 --- a/app/display.h +++ b/app/display.h @@ -60,7 +60,8 @@ prints(8, 11, str) #define display_active_cpu(pcpu_num) \ - printf(8, 25, "core #%i", pcpu_num) + prints(8, 25, "core #"); \ + printi(8, 31, pcpu_num, 3, false, true) #define display_all_active \ prints(8, 25, "all cores")