Blank the full field when displaying the active CPU core.

This commit is contained in:
Martin Whitaker 2022-01-29 13:45:42 +00:00
parent f04cb1adb6
commit 73bfc1878a
1 changed files with 2 additions and 1 deletions

View File

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