Colored game over message

master
Elias Fleckenstein 2021-06-07 15:49:03 +02:00
parent 739ab666ff
commit 3fd6425bfe
1 changed files with 1 additions and 1 deletions

2
main.c
View File

@ -448,7 +448,7 @@ void print_board(board *b) {
}
void print_score(board *b) {
printf("Game Over\nScore:%u\n", b->points);
printf("\e[1m\e[91mGame Over\e[0m\n\e[1mScore: \e[0m%u\n", b->points);
}
void merge_test1() {