Bold ingame score display

master
Elias Fleckenstein 2021-06-07 15:50:23 +02:00
parent 3fd6425bfe
commit 15573bcdc7
1 changed files with 1 additions and 1 deletions

2
main.c
View File

@ -440,7 +440,7 @@ void print_board_line(board *b, int l) {
void print_board(board *b) {
printf("\e[2J\e[0;0H");
printf("Score: %u\n", b->points);
printf("\e[1mScore: \e[0m%u\n", b->points);
print_sep("\u250F", "\u2513", "\u252F", "\u2501");
for(int i = 0; i < 4; ++i) {
print_board_line(b, i);