diff --git a/main b/main index 01aff17..14495a2 100755 Binary files a/main and b/main differ diff --git a/src/main.c b/src/main.c index b93f577..4ca1b00 100644 --- a/src/main.c +++ b/src/main.c @@ -126,26 +126,28 @@ void clear() { */ void show() { clear(); + printf("╔═══╦═══╦═══╦═══╦═══╗\n"); for (int i = 0; i < 6; i++) { for (int j = 0; j < 5; j++) { switch (pf_props[i][j][1]) { case '0': - printf("| %c ", playfield[i][j]); + printf("║ %c ", playfield[i][j]); break; case '1': - printf("| " RED "%c " RESET, playfield[i][j]); + printf("║ " RED "%c " RESET, playfield[i][j]); break; case '2': - printf("| " GREEN "%c " RESET, playfield[i][j]); + printf("║ " GREEN "%c " RESET, playfield[i][j]); break; case '3': - printf("| " YELLOW "%c " RESET, playfield[i][j]); + printf("║ " YELLOW "%c " RESET, playfield[i][j]); break; } } - printf("|\n"); + printf("║\n"); + if (i < 5) printf("╠═══╬═══╬═══╬═══╬═══╣\n"); } - printf("\n"); + printf("╚═══╩═══╩═══╩═══╩═══╝\n"); } /*